Changeset 97503 in webkit


Ignore:
Timestamp:
Oct 14, 2011 1:58:08 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

[WebKit2][gtk] Add documentation for WebKitPluginError and WebKitPolicyError.
https://bugs.webkit.org/show_bug.cgi?id=70016

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

  • UIProcess/API/gtk/WebKitError.h:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r97500 r97503  
     12011-10-14  Nayan Kumar K  <nayankk@motorola.com>
     2
     3        [WebKit2][gtk] Add documentation for WebKitPluginError and WebKitPolicyError.
     4        https://bugs.webkit.org/show_bug.cgi?id=70016
     5
     6        Reviewed by Martin Robinson.
     7
     8        * UIProcess/API/gtk/WebKitError.h:
     9
    1102011-10-14  Nayan Kumar K  <nayankk@motorola.com>
    211
  • trunk/Source/WebKit2/UIProcess/API/gtk/WebKitError.h

    r96821 r97503  
    4343 *
    4444 * Enum values used to denote the various network errors.
    45  *
    4645 **/
    4746typedef enum {
     
    5352} WebKitNetworkError;
    5453
     54/**
     55 * WebKitPolicyError:
     56 * @WEBKIT_POLICY_ERROR_FAILED: Generic load failure due to policy error
     57 * @WEBKIT_POLICY_ERROR_CANNOT_SHOW_MIME_TYPE: Load failure due to unsupported mime type
     58 * @WEBKIT_POLICY_ERROR_CANNOT_SHOW_URL: Load failure due to URI that can not be shown
     59 * @WEBKIT_POLICY_ERROR_FRAME_LOAD_INTERRUPTED_BY_POLICY_CHANGE: Load failure due to frame load interruption by policy change
     60 * @WEBKIT_POLICY_ERROR_CANNOT_USE_RESTRICTED_PORT: Load failure due to port restriction
     61 *
     62 * Enum values used to denote the various policy errors.
     63 **/
    5564typedef enum {
    5665    WEBKIT_POLICY_ERROR_FAILED = 199,
     
    6170} WebKitPolicyError;
    6271
     72/**
     73 * WebKitPluginError:
     74 * @WEBKIT_PLUGIN_ERROR_FAILED: Generic plugin load failure
     75 * @WEBKIT_PLUGIN_ERROR_CANNOT_FIND_PLUGIN: Load failure due to missing plugin
     76 * @WEBKIT_PLUGIN_ERROR_CANNOT_LOAD_PLUGIN: Load failure due to inability to load plugin
     77 * @WEBKIT_PLUGIN_ERROR_JAVA_UNAVAILABLE: Load failue due to missing Java support that is required to load plugin
     78 * @WEBKIT_PLUGIN_ERROR_CONNECTION_CANCELLED: Load failure due to connection cancellation
     79 * @WEBKIT_PLUGIN_ERROR_WILL_HANDLE_LOAD: Load failure since plugin handles the load
     80 *
     81 * Enum values used to denote the various plugin errors.
     82 **/
    6383typedef enum {
    6484    WEBKIT_PLUGIN_ERROR_FAILED = 299,
Note: See TracChangeset for help on using the changeset viewer.