Changeset 69858 in webkit


Ignore:
Timestamp:
Oct 15, 2010 9:48:06 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-10-15 Sergio Villar Senin <svillar@igalia.com>

Reviewed by Martin Robinson.

[GTK] Fix introspection support
https://bugs.webkit.org/show_bug.cgi?id=47723

Added HTTP cache directory to the WebkitGtk+ GIR sources.

  • GNUmakefile.am:

2010-10-15 Sergio Villar Senin <svillar@igalia.com>

Reviewed by Martin Robinson.

[GTK] Fix introspection support
https://bugs.webkit.org/show_bug.cgi?id=47723

WebKitSoupCacheType was incorrectly registered twice. Renamed to
WebKitSoupCacheTypeType for the enumerated type.

  • platform/network/soup/cache/webkit/soup-cache.c: (webkit_soup_cache_type_get_type):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r69762 r69858  
     12010-10-15  Sergio Villar Senin  <svillar@igalia.com>
     2
     3        Reviewed by Martin Robinson.
     4
     5        [GTK] Fix introspection support
     6        https://bugs.webkit.org/show_bug.cgi?id=47723
     7
     8        Added HTTP cache directory to the WebkitGtk+ GIR sources.
     9
     10        * GNUmakefile.am:
     11
    1122010-10-14  Andras Becsi  <abecsi@webkit.org>
    213
  • trunk/GNUmakefile.am

    r69718 r69858  
    425425             --add-include-path=$(top_srcdir)/WebKit/gtk \
    426426             --add-include-path=$(builddir) \
     427             -I$(top_srcdir)/WebCore/platform/network/soup/cache \
    427428             -I$(top_srcdir)/WebKit/gtk \
    428429             -I$(top_builddir)/WebKit/gtk \
  • trunk/WebCore/ChangeLog

    r69853 r69858  
     12010-10-15  Sergio Villar Senin  <svillar@igalia.com>
     2
     3        Reviewed by Martin Robinson.
     4
     5        [GTK] Fix introspection support
     6        https://bugs.webkit.org/show_bug.cgi?id=47723
     7
     8        WebKitSoupCacheType was incorrectly registered twice. Renamed to
     9        WebKitSoupCacheTypeType for the enumerated type.
     10
     11        * platform/network/soup/cache/webkit/soup-cache.c:
     12        (webkit_soup_cache_type_get_type):
     13
    1142010-10-15  Ilya Tikhonovsky  <loislo@chromium.org>
    215
  • trunk/WebCore/platform/network/soup/cache/webkit/soup-cache.c

    r69821 r69858  
    11801180
    11811181        if (!cache_type) {
    1182                 cache_type = g_enum_register_static ("WebKitSoupCacheType", cache_types);
     1182                cache_type = g_enum_register_static ("WebKitSoupCacheTypeType", cache_types);
    11831183        }
    11841184        return cache_type;
Note: See TracChangeset for help on using the changeset viewer.