Changeset 66099 in webkit


Ignore:
Timestamp:
Aug 26, 2010 6:12:03 AM (14 years ago)
Author:
kov@webkit.org
Message:

2010-08-26 Gustavo Noronha Silva <Gustavo Noronha Silva>

Reviewed by Martin Robinson.

[GTK] WebKitGTK+ needs proper introspection annotation for most types and methods
https://bugs.webkit.org/show_bug.cgi?id=44565

Add documentation and introspection specific information to a few
getter and setter methods.

  • webkit/webkitwebview.cpp:
Location:
trunk/WebKit/gtk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/gtk/ChangeLog

    r66070 r66099  
     12010-08-26  Gustavo Noronha Silva  <gns@gnome.org>
     2
     3        Reviewed by Martin Robinson.
     4
     5        [GTK] WebKitGTK+ needs proper introspection annotation for most types and methods
     6        https://bugs.webkit.org/show_bug.cgi?id=44565
     7
     8        Add documentation and introspection specific information to a few
     9        getter and setter methods.
     10
     11        * webkit/webkitwebview.cpp:
     12
    1132010-08-25  Martin Robinson  <mrobinson@igalia.com>
    214
  • trunk/WebKit/gtk/webkit/webkitwebview.cpp

    r66070 r66099  
    31943194}
    31953195
     3196/**
     3197 * webkit_web_view_set_settings:
     3198 * @web_view: a #WebKitWebView
     3199 * @settings: (transfer none): the #WebKitWebSettings to be set
     3200 *
     3201 * Replaces the #WebKitWebSettings instance that is currently attached
     3202 * to @web_view with @settings. The reference held by the @web_view on
     3203 * the old #WebKitWebSettings instance is dropped, and the reference
     3204 * count of @settings is inscreased.
     3205 *
     3206 * The settings are automatically applied to @web_view.
     3207 */
    31963208void webkit_web_view_set_settings(WebKitWebView* webView, WebKitWebSettings* webSettings)
    31973209{
     
    32093221}
    32103222
     3223/**
     3224 * webkit_web_view_get_settings:
     3225 * @web_view: a #WebKitWebView
     3226 *
     3227 * Obtains the #WebKitWebSettings associated with the
     3228 * #WebKitWebView. The #WebKitWebView always has an associated
     3229 * instance of #WebKitWebSettings. The reference that is returned by
     3230 * this call is owned by the #WebKitWebView. You may need to increase
     3231 * its reference count if you intend to keep it alive for longer than
     3232 * the #WebKitWebView.
     3233 *
     3234 * Return value: (transfer none): the #WebKitWebSettings instance
     3235 */
    32113236WebKitWebSettings* webkit_web_view_get_settings(WebKitWebView* webView)
    32123237{
     
    32273252 * valid #WebKitWebView.
    32283253 *
    3229  * Returns: the #WebKitWebInspector instance associated with the
    3230  * #WebKitWebView; %NULL is only returned if the argument is not a
    3231  * valid #WebKitWebView.
     3254 * Return value: (transfer none): the #WebKitWebInspector instance.
    32323255 *
    32333256 * Since: 1.0.3
     
    32643287 * #WebKitWebView.
    32653288 *
    3266  * Return value: the #WebKitWebWindowFeatures
     3289 * Return value: (transfer none): the #WebKitWebWindowFeatures
    32673290 *
    32683291 * Since: 1.0.3
Note: See TracChangeset for help on using the changeset viewer.