Title: [219265] trunk/Source/WebCore
Revision
219265
Author
[email protected]
Date
2017-07-07 13:20:24 -0700 (Fri, 07 Jul 2017)

Log Message

[Curl] Remove data url handler for async load
https://bugs.webkit.org/show_bug.cgi?id=174263

data url is handled by ResourceLoader. No need for specific handling
in platform dependent layer.

Patch by Basuke Suzuki <[email protected]> on 2017-07-07
Reviewed by Alex Christensen.

* platform/network/curl/ResourceHandleManager.cpp:
(WebCore::ResourceHandleManager::startJob):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (219264 => 219265)


--- trunk/Source/WebCore/ChangeLog	2017-07-07 20:05:27 UTC (rev 219264)
+++ trunk/Source/WebCore/ChangeLog	2017-07-07 20:20:24 UTC (rev 219265)
@@ -1,3 +1,16 @@
+2017-07-07  Basuke Suzuki  <[email protected]>
+
+        [Curl] Remove data url handler for async load
+        https://bugs.webkit.org/show_bug.cgi?id=174263
+
+        data url is handled by ResourceLoader. No need for specific handling
+        in platform dependent layer.
+
+        Reviewed by Alex Christensen.
+
+        * platform/network/curl/ResourceHandleManager.cpp:
+        (WebCore::ResourceHandleManager::startJob):
+
 2017-07-07  Matt Lewis  <[email protected]>
 
         Unreviewed, rolling out r219257.

Modified: trunk/Source/WebCore/platform/network/curl/ResourceHandleManager.cpp (219264 => 219265)


--- trunk/Source/WebCore/platform/network/curl/ResourceHandleManager.cpp	2017-07-07 20:05:27 UTC (rev 219264)
+++ trunk/Source/WebCore/platform/network/curl/ResourceHandleManager.cpp	2017-07-07 20:20:24 UTC (rev 219265)
@@ -224,14 +224,6 @@
 
 void ResourceHandleManager::startJob(ResourceHandle* job)
 {
-    URL url = ""
-
-    if (url.protocolIsData()) {
-        job->handleDataURL();
-        job->deref();
-        return;
-    }
-
     job->initialize();
 
     m_runningJobs++;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to