Changeset 73368 in webkit


Ignore:
Timestamp:
Dec 6, 2010 7:59:30 AM (13 years ago)
Author:
Martin Robinson
Message:

2010-12-06 Martin Robinson <mrobinson@igalia.com>

Reviewed by Xan Lopez.

[GTK] Build is broken after r73353
https://bugs.webkit.org/show_bug.cgi?id=50568

Fix the gtk-doc build by making all members of the cache model
enum public. gtk-doc does not support making only some enum
members private. We should also expose it so that users querying
the cache model do not get mysterious, undocumented results.

  • webkit/webkitwebview.h: Fix gtk-doc for the cache model enum.
Location:
trunk/WebKit/gtk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/gtk/ChangeLog

    r73354 r73368  
     12010-12-06  Martin Robinson  <mrobinson@igalia.com>
     2
     3        Reviewed by Xan Lopez.
     4
     5        [GTK] Build is broken after r73353
     6        https://bugs.webkit.org/show_bug.cgi?id=50568
     7
     8        Fix the gtk-doc build by making all members of the cache model
     9        enum public. gtk-doc does not support making only some enum
     10        members private. We should also expose it so that users querying
     11        the cache model do not get mysterious, undocumented results.
     12
     13        * webkit/webkitwebview.h: Fix gtk-doc for the cache model enum.
     14
    1152010-12-06  Derek Weitzel  <djw8605@gmail.com>
    216
  • trunk/WebKit/gtk/webkit/webkitwebview.h

    r73353 r73368  
    5353/* 
    5454 * WebKitCacheModel:
     55 * @WEBKIT_CACHE_MODEL_DEFAULT: The default cache model. This is
     56 *   WEBKIT_CACHE_MODEL_WEB_BROWSER.
    5557 * @WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER: Disable the cache completely, which
    5658 *   substantially reduces memory usage. Useful for applications that only
    5759 *   access local files.
    5860 * @WEBKIT_CACHE_MODEL_WEB_BROWSER: Improve document load speed substantially
    59  *   by caching previously viewed content. This is the default setting.
     61 *   by caching previously viewed content.
    6062 *
    6163 * Enum values used for determining the webview cache model.
    6264 */
    6365typedef enum {
    64     /*< private >*/
    6566    WEBKIT_CACHE_MODEL_DEFAULT,
    66     /*< public >*/
    6767    WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER,
    6868    WEBKIT_CACHE_MODEL_WEB_BROWSER
Note: See TracChangeset for help on using the changeset viewer.