Title: [224086] trunk/Source/WebCore
Revision
224086
Author
[email protected]
Date
2017-10-26 23:18:45 -0700 (Thu, 26 Oct 2017)

Log Message

[WinCairo] Fix build after WebCore moves to unified source.
https://bugs.webkit.org/show_bug.cgi?id=178920

Added empty implementations to fix link error.

Patch by Basuke Suzuki <[email protected]> on 2017-10-26
Reviewed by Ryosuke Niwa.

* platform/network/curl/DNSCurl.cpp:
(WebCore::DNSResolveQueue::updateIsUsingProxy):
(WebCore::DNSResolveQueue::platformResolve):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (224085 => 224086)


--- trunk/Source/WebCore/ChangeLog	2017-10-27 06:06:38 UTC (rev 224085)
+++ trunk/Source/WebCore/ChangeLog	2017-10-27 06:18:45 UTC (rev 224086)
@@ -1,3 +1,16 @@
+2017-10-26  Basuke Suzuki  <[email protected]>
+
+        [WinCairo] Fix build after WebCore moves to unified source.
+        https://bugs.webkit.org/show_bug.cgi?id=178920
+
+        Added empty implementations to fix link error.
+
+        Reviewed by Ryosuke Niwa.
+
+        * platform/network/curl/DNSCurl.cpp:
+        (WebCore::DNSResolveQueue::updateIsUsingProxy):
+        (WebCore::DNSResolveQueue::platformResolve):
+
 2017-10-26  Jeremy Jones  <[email protected]>
 
         Implement seek tolerance methods in WebAVPlayerController.

Modified: trunk/Source/WebCore/platform/network/curl/DNSCurl.cpp (224085 => 224086)


--- trunk/Source/WebCore/platform/network/curl/DNSCurl.cpp	2017-10-27 06:06:38 UTC (rev 224085)
+++ trunk/Source/WebCore/platform/network/curl/DNSCurl.cpp	2017-10-27 06:18:45 UTC (rev 224086)
@@ -25,6 +25,7 @@
 
 #include "config.h"
 #include "DNS.h"
+#include "DNSResolveQueue.h"
 
 #if USE(CURL)
 
@@ -32,6 +33,16 @@
 
 namespace WebCore {
 
+void DNSResolveQueue::updateIsUsingProxy()
+{
+    notImplemented();
+}
+
+void DNSResolveQueue::platformResolve(const String& /* hostname */)
+{
+    notImplemented();
+}
+
 void prefetchDNS(const String& /* hostname */)
 {
     notImplemented();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to