Title: [143748] trunk/Source/WebCore
Revision
143748
Author
[email protected]
Date
2013-02-22 10:13:31 -0800 (Fri, 22 Feb 2013)

Log Message

[BlackBerry] Use KURL::protocolIsInHTTPFamily instead of KURL::protocolInHTTPFamily
https://bugs.webkit.org/show_bug.cgi?id=110581

Patch by Carlos Garcia Campos <[email protected]> on 2013-02-22
Reviewed by Rob Buis.

KURL::protocolInHTTPFamily() was removed in r109670.

* platform/network/blackberry/ResourceRequestBlackBerry.cpp:
(WebCore::ResourceRequest::clearHTTPContentLength):
(WebCore::ResourceRequest::clearHTTPContentType):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (143747 => 143748)


--- trunk/Source/WebCore/ChangeLog	2013-02-22 18:07:36 UTC (rev 143747)
+++ trunk/Source/WebCore/ChangeLog	2013-02-22 18:13:31 UTC (rev 143748)
@@ -1,3 +1,16 @@
+2013-02-22  Carlos Garcia Campos  <[email protected]>
+
+        [BlackBerry] Use KURL::protocolIsInHTTPFamily instead of KURL::protocolInHTTPFamily
+        https://bugs.webkit.org/show_bug.cgi?id=110581
+
+        Reviewed by Rob Buis.
+
+        KURL::protocolInHTTPFamily() was removed in r109670.
+
+        * platform/network/blackberry/ResourceRequestBlackBerry.cpp:
+        (WebCore::ResourceRequest::clearHTTPContentLength):
+        (WebCore::ResourceRequest::clearHTTPContentType):
+
 2013-02-22  Allan Sandfeld Jensen  <[email protected]>
 
         Unreviewed build-fix after r143744.

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


--- trunk/Source/WebCore/platform/network/blackberry/ResourceRequestBlackBerry.cpp	2013-02-22 18:07:36 UTC (rev 143747)
+++ trunk/Source/WebCore/platform/network/blackberry/ResourceRequestBlackBerry.cpp	2013-02-22 18:13:31 UTC (rev 143748)
@@ -244,7 +244,7 @@
 
     m_httpHeaderFields.remove("Content-Length");
 
-    if (url().protocolInHTTPFamily())
+    if (url().protocolIsInHTTPFamily())
         m_platformRequestUpdated = false;
 }
 
@@ -254,7 +254,7 @@
 
     m_httpHeaderFields.remove("Content-Type");
 
-    if (url().protocolInHTTPFamily())
+    if (url().protocolIsInHTTPFamily())
         m_platformRequestUpdated = false;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to