Title: [91075] trunk/Source/WebCore
Revision
91075
Author
[email protected]
Date
2011-07-15 10:12:10 -0700 (Fri, 15 Jul 2011)

Log Message

Remove unncessary creation of connectionProperties dictionary
https://bugs.webkit.org/show_bug.cgi?id=63958

Reviewed by Alexey Proskuryakov.

No new tests because no change in functionality.

* platform/network/cf/ResourceHandleCFNet.cpp:
(WebCore::ResourceHandle::loadResourceSynchronously):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (91074 => 91075)


--- trunk/Source/WebCore/ChangeLog	2011-07-15 16:50:55 UTC (rev 91074)
+++ trunk/Source/WebCore/ChangeLog	2011-07-15 17:12:10 UTC (rev 91075)
@@ -1,3 +1,15 @@
+2011-07-15  Pratik Solanki  <[email protected]>
+
+        Remove unncessary creation of connectionProperties dictionary
+        https://bugs.webkit.org/show_bug.cgi?id=63958
+
+        Reviewed by Alexey Proskuryakov.
+
+        No new tests because no change in functionality.
+
+        * platform/network/cf/ResourceHandleCFNet.cpp:
+        (WebCore::ResourceHandle::loadResourceSynchronously):
+
 2011-07-15  Pavel Feldman  <[email protected]>
 
         Web Inspector: Focusing on another node while editing CSS property does not update styles

Modified: trunk/Source/WebCore/platform/network/cf/ResourceHandleCFNet.cpp (91074 => 91075)


--- trunk/Source/WebCore/platform/network/cf/ResourceHandleCFNet.cpp	2011-07-15 16:50:55 UTC (rev 91074)
+++ trunk/Source/WebCore/platform/network/cf/ResourceHandleCFNet.cpp	2011-07-15 17:12:10 UTC (rev 91075)
@@ -687,8 +687,6 @@
         return;
     }
 
-    RetainPtr<CFDictionaryRef> connectionProperties(AdoptCF, createConnectionProperties(storedCredentials == AllowStoredCredentials));
-
     handle->createCFURLConnection(storedCredentials == AllowStoredCredentials, ResourceHandle::shouldContentSniffURL(request.url()));
 
     CFURLConnectionScheduleWithRunLoop(handle->connection(), CFRunLoopGetCurrent(), synchronousLoadRunLoopMode());
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to