Changeset 113569 in webkit


Ignore:
Timestamp:
Apr 9, 2012 3:33:22 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[Blackberry] m_isRequestedByPlugin should be copied in ResourceRequest
https://bugs.webkit.org/show_bug.cgi?id=83447

Patch by Chris Guan <chris.guan@torchmobile.com.cn> on 2012-04-09
Reviewed by George Staikos.

It is an obvious error, We should copy m_isRequestedByPlugin in ResourceReuest.

No new tests, because those existing plugin test cases are enough.

  • platform/network/blackberry/ResourceRequestBlackBerry.cpp:

(WebCore::ResourceRequest::doPlatformCopyData):
(WebCore::ResourceRequest::doPlatformAdopt):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r113564 r113569  
     12012-04-09  Chris Guan  <chris.guan@torchmobile.com.cn>
     2
     3        [Blackberry] m_isRequestedByPlugin should be copied in ResourceRequest
     4        https://bugs.webkit.org/show_bug.cgi?id=83447
     5
     6        Reviewed by George Staikos.
     7
     8        It is an obvious error, We should copy m_isRequestedByPlugin in ResourceReuest.
     9
     10        No new tests, because those existing plugin test cases are enough.
     11
     12        * platform/network/blackberry/ResourceRequestBlackBerry.cpp:
     13        (WebCore::ResourceRequest::doPlatformCopyData):
     14        (WebCore::ResourceRequest::doPlatformAdopt):
     15
    1162012-04-09  'Pavel Feldman'  <pfeldman@chromium.org>
    217
  • trunk/Source/WebCore/platform/network/blackberry/ResourceRequestBlackBerry.cpp

    r113524 r113569  
    231231    data->m_isXMLHTTPRequest = m_isXMLHTTPRequest;
    232232    data->m_mustHandleInternally = m_mustHandleInternally;
     233    data->m_isRequestedByPlugin = m_isRequestedByPlugin;
    233234    return data;
    234235}
     
    240241    m_isXMLHTTPRequest = data->m_isXMLHTTPRequest;
    241242    m_mustHandleInternally = data->m_mustHandleInternally;
     243    m_isRequestedByPlugin = data->m_isRequestedByPlugin;
    242244    m_forceDownload = data->m_forceDownload;
    243245}
Note: See TracChangeset for help on using the changeset viewer.