Changeset 105121 in webkit


Ignore:
Timestamp:
Jan 16, 2012 7:35:24 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

platformRequest(QNX) need to get the conditional information from ResourceRequest.
https://bugs.webkit.org/show_bug.cgi?id=75216

Patch by Jason Liu <jason.liu@torchmobile.com.cn> on 2012-01-16
Reviewed by George Staikos.

Pass the isConditional() flag in ResourceRequest to the QNX platform's network request.
QNX platform's network needs this flag to determine whether to use disk-cache.

  • platform/network/blackberry/ResourceRequestBlackBerry.cpp:

(ResourceRequest::initializePlatformRequest):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r105120 r105121  
     12012-01-16  Jason Liu  <jason.liu@torchmobile.com.cn>
     2
     3        platformRequest(QNX) need to get the conditional information from ResourceRequest.
     4        https://bugs.webkit.org/show_bug.cgi?id=75216
     5
     6        Reviewed by George Staikos.
     7
     8        Pass the isConditional() flag in ResourceRequest to the QNX platform's network request.
     9        QNX platform's network needs this flag to determine whether to use disk-cache.
     10
     11        * platform/network/blackberry/ResourceRequestBlackBerry.cpp:
     12        (ResourceRequest::initializePlatformRequest):
     13
    1142012-01-16  Robert Hogan  <robert@webkit.org>
    215
  • trunk/Source/WebCore/platform/network/blackberry/ResourceRequestBlackBerry.cpp

    r104001 r105121  
    9797                timeoutInterval());
    9898
     99        platformRequest.setConditional(isConditional());
     100
    99101        if (httpBody() && !httpBody()->isEmpty()) {
    100102            const Vector<FormDataElement>& elements = httpBody()->elements();
Note: See TracChangeset for help on using the changeset viewer.