Changeset 96606 in webkit


Ignore:
Timestamp:
Oct 4, 2011 10:39:33 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

[WebKit2][gtk] Fix warnings while generating documentation using gtk-doc.
https://bugs.webkit.org/show_bug.cgi?id=69329

Patch by Nayan Kumar K <nayankk@motorola.com> on 2011-10-04
Reviewed by Martin Robinson.

Added documentation for WebKitNetworkError enum and corrected few other
minor issues in WebKit2-GTK+ API documentation.

  • UIProcess/API/gtk/WebKitError.h: Added documentation for WebKitNetworkError.
  • UIProcess/API/gtk/WebKitWebLoaderClient.cpp:

(webkit_web_loader_client_class_init): Corrected parameter name.

  • UIProcess/API/gtk/WebKitWebView.cpp: Corrected annotation.
Location:
trunk/Source/WebKit2
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r96593 r96606  
     12011-10-04  Nayan Kumar K  <nayankk@motorola.com>
     2
     3        [WebKit2][gtk] Fix warnings while generating documentation using gtk-doc.
     4        https://bugs.webkit.org/show_bug.cgi?id=69329
     5
     6        Reviewed by Martin Robinson.
     7
     8        Added documentation for WebKitNetworkError enum and corrected few other
     9        minor issues in WebKit2-GTK+ API documentation.
     10
     11        * UIProcess/API/gtk/WebKitError.h: Added documentation for WebKitNetworkError.
     12        * UIProcess/API/gtk/WebKitWebLoaderClient.cpp:
     13        (webkit_web_loader_client_class_init): Corrected parameter name.
     14        * UIProcess/API/gtk/WebKitWebView.cpp: Corrected annotation.
     15
    1162011-10-04  Vsevolod Vlasov  <vsevik@chromium.org>
    217
  • trunk/Source/WebKit2/UIProcess/API/gtk/WebKitError.h

    r96324 r96606  
    3333#define WEBKIT_NETWORK_ERROR webkit_network_error_quark ()
    3434
     35/**
     36 * WebKitNetworkError:
     37 * @WEBKIT_NETWORK_ERROR_FAILED: Generic load failure
     38 * @WEBKIT_NETWORK_ERROR_TRANSPORT: Load failure due to transport error
     39 * @WEBKIT_NETWORK_ERROR_UNKNOWN_PROTOCOL: Load failure due to unknown protocol
     40 * @WEBKIT_NETWORK_ERROR_CANCELLED: Load failure due to cancellation
     41 * @WEBKIT_NETWORK_ERROR_FILE_DOES_NOT_EXIST: Load failure due to missing file
     42 *
     43 * Enum values used to denote the various network errors.
     44 *
     45 **/
    3546typedef enum {
    3647    WEBKIT_NETWORK_ERROR_FAILED = 399,
  • trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebLoaderClient.cpp

    r96511 r96606  
    222222    /**
    223223     * WebKitWebLoaderClient::provisional-load-started:
    224      * @loader_client: the #WebKitWebLoader
     224     * @loader_client: the #WebKitWebLoaderClient
    225225     *
    226226     * This signal is emitted when new load request is made.
     
    245245    /**
    246246     * WebKitWebLoaderClient::provisional-load-received-server-redirect:
    247      * @loader_client: the #WebKitWebLoader
     247     * @loader_client: the #WebKitWebLoaderClient
    248248     *
    249249     * This signal is emitted when a provisional data source
     
    267267    /**
    268268     * WebKitWebLoaderClient::provisional-load-failed:
    269      * @loader_client: the #WebKitWebLoader
     269     * @loader_client: the #WebKitWebLoaderClient
    270270     * @error: the #GError that was triggered
    271271     *
     
    294294    /**
    295295     * WebKitWebLoaderClient::load-committed:
    296      * @loader_client: the #WebKitWebLoader
     296     * @loader_client: the #WebKitWebLoaderClient
    297297     *
    298298     * This signal is emitted when content starts arriving for a page load.
     
    316316    /**
    317317     * WebKitWebLoaderClient::load-finished:
    318      * @loader_client: the #WebKitWebLoader
     318     * @loader_client: the #WebKitWebLoaderClient
    319319     *
    320320     * This signal is emitted when a page load completes, that is, when all
     
    341341    /**
    342342     * WebKitWebLoaderClient::load-failed:
    343      * @loader_client: the #WebKitWebLoader
     343     * @loader_client: the #WebKitWebLoaderClient
    344344     * @error: the #GError that was triggered
    345345     *
  • trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebView.cpp

    r96508 r96606  
    158158 * Gets the web context of @web_view.
    159159 *
    160  * Returns: (transfer-none): the #WebKitWebContext of the view
     160 * Returns: (transfer none): the #WebKitWebContext of the view
    161161 */
    162162WebKitWebContext* webkit_web_view_get_context(WebKitWebView *webView)
     
    174174 * to monitor the status of load operations happening on @web_view.
    175175 *
    176  * Returns: (trasnfer-none): the #WebKitWebLoaderClient of @web_view.
     176 * Returns: (transfer none): the #WebKitWebLoaderClient of @web_view.
    177177 */
    178178WebKitWebLoaderClient* webkit_web_view_get_loader_client(WebKitWebView* webView)
Note: See TracChangeset for help on using the changeset viewer.