Title: [122086] trunk/Source/WebCore
Revision
122086
Author
[email protected]
Date
2012-07-08 21:56:36 -0700 (Sun, 08 Jul 2012)

Log Message

[BlackBerry] Make setForceDownload a setter method.
https://bugs.webkit.org/show_bug.cgi?id=90591

Reviewed by Rob Buis.

* platform/network/blackberry/ResourceRequest.h:
(WebCore::ResourceRequest::setForceDownload):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (122085 => 122086)


--- trunk/Source/WebCore/ChangeLog	2012-07-09 04:54:33 UTC (rev 122085)
+++ trunk/Source/WebCore/ChangeLog	2012-07-09 04:56:36 UTC (rev 122086)
@@ -1,3 +1,13 @@
+2012-07-08  Mary Wu  <[email protected]>
+
+        [BlackBerry] Make setForceDownload a setter method.
+        https://bugs.webkit.org/show_bug.cgi?id=90591
+
+        Reviewed by Rob Buis.
+
+        * platform/network/blackberry/ResourceRequest.h:
+        (WebCore::ResourceRequest::setForceDownload):
+
 2012-07-05  MORITA Hajime  <[email protected]>
 
         Heap-use-after-free in WebCore::RenderObject::destroyAndCleanupAnonymousWrappers

Modified: trunk/Source/WebCore/platform/network/blackberry/ResourceRequest.h (122085 => 122086)


--- trunk/Source/WebCore/platform/network/blackberry/ResourceRequest.h	2012-07-09 04:54:33 UTC (rev 122085)
+++ trunk/Source/WebCore/platform/network/blackberry/ResourceRequest.h	2012-07-09 04:56:36 UTC (rev 122086)
@@ -107,7 +107,7 @@
     bool mustHandleInternally() const { return m_mustHandleInternally; }
 
     void initializePlatformRequest(BlackBerry::Platform::NetworkRequest&, bool cookiesEnabled, bool isInitial = false, bool isRedirect = false) const;
-    void setForceDownload(bool forceDownload) { m_forceDownload = true; }
+    void setForceDownload(bool forceDownload) { m_forceDownload = forceDownload; }
     bool forceDownload() const { return m_forceDownload; }
     void setSuggestedSaveName(const String& name) { m_suggestedSaveName = name; }
     String suggestedSaveName() const { return m_suggestedSaveName; }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to