Changeset 85862 in webkit


Ignore:
Timestamp:
May 5, 2011 10:54:15 AM (13 years ago)
Author:
bfulgham@webkit.org
Message:

[WinCairo] unreviewed build correction.

  • platform/network/curl/ResourceRequest.h:

Stub out the new pipelined http logic for cURL.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r85858 r85862  
     12011-05-05  Brent Fulgham  <bfulgham@webkit.org>
     2
     3        [WinCairo] unreviewed build correction.
     4
     5        * platform/network/curl/ResourceRequest.h:
     6        Stub out the new pipelined http logic for cURL.
     7
    182011-05-05  Pavel Feldman  <pfeldman@chromium.org>
    29
  • trunk/Source/WebCore/platform/network/curl/ResourceRequest.h

    r68762 r85862  
    6565        CFURLRequestRef cfURLRequest() const { return 0; }
    6666
     67        // The following two stubs are for compatibility with CFNetwork, and are not used.
     68        static bool httpPipeliningEnabled() { return false; }
     69        static void setHTTPPipeliningEnabled(bool) { }
     70
    6771    private:
    6872        friend class ResourceRequestBase;
     
    7377        PassOwnPtr<CrossThreadResourceRequestData> doPlatformCopyData(PassOwnPtr<CrossThreadResourceRequestData> data) const { return data; }
    7478        void doPlatformAdopt(PassOwnPtr<CrossThreadResourceRequestData>) { }
     79 
     80        static bool s_httpPipeliningEnabled;
    7581    };
    7682
Note: See TracChangeset for help on using the changeset viewer.