Title: [113569] trunk/Source/WebCore
Revision
113569
Author
[email protected]
Date
2012-04-09 03:33:22 -0700 (Mon, 09 Apr 2012)

Log Message

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

Patch by Chris Guan <[email protected]> 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):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (113568 => 113569)


--- trunk/Source/WebCore/ChangeLog	2012-04-09 10:19:25 UTC (rev 113568)
+++ trunk/Source/WebCore/ChangeLog	2012-04-09 10:33:22 UTC (rev 113569)
@@ -1,3 +1,18 @@
+2012-04-09  Chris Guan  <[email protected]>
+
+        [Blackberry] m_isRequestedByPlugin should be copied in ResourceRequest
+        https://bugs.webkit.org/show_bug.cgi?id=83447
+
+        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):
+
 2012-04-09  'Pavel Feldman'  <[email protected]>
 
         Not reviewed: fixing inspector front-end compilation that has been broken by the

Modified: trunk/Source/WebCore/platform/network/blackberry/ResourceRequestBlackBerry.cpp (113568 => 113569)


--- trunk/Source/WebCore/platform/network/blackberry/ResourceRequestBlackBerry.cpp	2012-04-09 10:19:25 UTC (rev 113568)
+++ trunk/Source/WebCore/platform/network/blackberry/ResourceRequestBlackBerry.cpp	2012-04-09 10:33:22 UTC (rev 113569)
@@ -230,6 +230,7 @@
     data->m_anchorText = m_anchorText;
     data->m_isXMLHTTPRequest = m_isXMLHTTPRequest;
     data->m_mustHandleInternally = m_mustHandleInternally;
+    data->m_isRequestedByPlugin = m_isRequestedByPlugin;
     return data;
 }
 
@@ -239,6 +240,7 @@
     m_anchorText = data->m_anchorText;
     m_isXMLHTTPRequest = data->m_isXMLHTTPRequest;
     m_mustHandleInternally = data->m_mustHandleInternally;
+    m_isRequestedByPlugin = data->m_isRequestedByPlugin;
     m_forceDownload = data->m_forceDownload;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to