Changeset 161064 in webkit


Ignore:
Timestamp:
Dec 25, 2013 1:56:23 AM (10 years ago)
Author:
Carlos Garcia Campos
Message:

[GTK] Fix warnings when generating WebExtensions gobject-instrospection files
https://bugs.webkit.org/show_bug.cgi?id=126225

Reviewed by Philippe Normand.

Add transfer annotation to webkit_web_page_get_dom_document() and
document webkit_web_page_get_main_frame().

  • WebProcess/InjectedBundle/API/gtk/WebKitWebPage.cpp:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r161063 r161064  
     12013-12-25  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Fix warnings when generating WebExtensions gobject-instrospection files
     4        https://bugs.webkit.org/show_bug.cgi?id=126225
     5
     6        Reviewed by Philippe Normand.
     7
     8        Add transfer annotation to webkit_web_page_get_dom_document() and
     9        document webkit_web_page_get_main_frame().
     10
     11        * WebProcess/InjectedBundle/API/gtk/WebKitWebPage.cpp:
     12
    1132013-12-25  Carlos Garcia Campos  <cgarcia@igalia.com>
    214
  • trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/WebKitWebPage.cpp

    r160750 r161064  
    412412 * Get the #WebKitDOMDocument currently loaded in @web_page
    413413 *
    414  * Returns: the #WebKitDOMDocument currently loaded, or %NULL
     414 * Returns: (transfer none): the #WebKitDOMDocument currently loaded, or %NULL
    415415 *    if no document is currently loaded.
    416416 */
     
    460460}
    461461
     462/**
     463 * webkit_web_page_get_main_frame:
     464 * @web_page: a #WebKitWebPage
     465 *
     466 * Returns the main frame of a #WebKitWebPage.
     467 *
     468 * Returns: (transfer none): the #WebKitFrame that is the main frame of @web_page
     469 *
     470 * Since: 2.2
     471 */
    462472WebKitFrame* webkit_web_page_get_main_frame(WebKitWebPage* webPage)
    463473{
Note: See TracChangeset for help on using the changeset viewer.