Changeset 162506 in webkit


Ignore:
Timestamp:
Jan 21, 2014 10:36:09 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Compile fix for using libsoup on Windows.
https://bugs.webkit.org/show_bug.cgi?id=127377

Patch by Alex Christensen <achristensen@webkit.org> on 2014-01-21
Reviewed by Daniel Bates.

  • platform/network/soup/ProxyResolverSoup.cpp:

(soupProxyResolverWkSetProperty):
(soupProxyResolverWkGetProperty):
(soupProxyResolverWkGetProxyURISync):
Replaced uint with unsigned.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r162503 r162506  
     12014-01-21  Alex Christensen  <achristensen@webkit.org>
     2
     3        Compile fix for using libsoup on Windows.
     4        https://bugs.webkit.org/show_bug.cgi?id=127377
     5
     6        Reviewed by Daniel Bates.
     7
     8        * platform/network/soup/ProxyResolverSoup.cpp:
     9        (soupProxyResolverWkSetProperty):
     10        (soupProxyResolverWkGetProperty):
     11        (soupProxyResolverWkGetProxyURISync):
     12        Replaced uint with unsigned.
     13
    1142014-01-21  Daniel Bates  <dabates@apple.com>
    215
  • trunk/Source/WebCore/platform/network/soup/ProxyResolverSoup.cpp

    r133731 r162506  
    6969}
    7070
    71 static void soupProxyResolverWkSetProperty(GObject* object, uint propID, const GValue* value, GParamSpec* pspec)
     71static void soupProxyResolverWkSetProperty(GObject* object, unsigned propID, const GValue* value, GParamSpec* pspec)
    7272{
    7373    SoupProxyResolverWkPrivate* priv = SOUP_PROXY_RESOLVER_WK_GET_PRIVATE(object);
     
    9393}
    9494
    95 static void soupProxyResolverWkGetProperty(GObject* object, uint propID, GValue* value, GParamSpec* pspec)
     95static void soupProxyResolverWkGetProperty(GObject* object, unsigned propID, GValue* value, GParamSpec* pspec)
    9696{
    9797    SoupProxyResolverWkPrivate* priv = SOUP_PROXY_RESOLVER_WK_GET_PRIVATE(object);
     
    157157}
    158158
    159 static uint soupProxyResolverWkGetProxyURISync(SoupProxyURIResolver* proxyResolver, SoupURI* uri, GCancellable*, SoupURI** proxyURI)
     159static unsigned soupProxyResolverWkGetProxyURISync(SoupProxyURIResolver* proxyResolver, SoupURI* uri, GCancellable*, SoupURI** proxyURI)
    160160{
    161161    SoupProxyResolverWkPrivate* priv = SOUP_PROXY_RESOLVER_WK_GET_PRIVATE(proxyResolver);
Note: See TracChangeset for help on using the changeset viewer.