Title: [235396] tags/Safari-607.1.3.3/Source/WebKit/UIProcess
Revision
235396
Author
bshaf...@apple.com
Date
2018-08-27 13:57:29 -0700 (Mon, 27 Aug 2018)

Log Message

Build fix. rdar://problem/43765405

Modified Paths


Diff

Modified: tags/Safari-607.1.3.3/Source/WebKit/UIProcess/WebPageProxy.cpp (235395 => 235396)


--- tags/Safari-607.1.3.3/Source/WebKit/UIProcess/WebPageProxy.cpp	2018-08-27 20:46:26 UTC (rev 235395)
+++ tags/Safari-607.1.3.3/Source/WebKit/UIProcess/WebPageProxy.cpp	2018-08-27 20:57:29 UTC (rev 235396)
@@ -1080,7 +1080,7 @@
     return WTFMove(navigation);
 }
 
-void WebPageProxy::loadAlternateHTMLString(const String& htmlString, const WebCore::URL& baseURL, const WebCore::URL& unreachableURL, API::Object* userData)
+void WebPageProxy::loadAlternateHTMLString(const String& htmlString, const WebCore::URL& baseURL, const WebCore::URL& unreachableURL, API::Object* userData, bool forSafeBrowsing)
 {
     // When the UIProcess is in the process of handling a failing provisional load, do not attempt to
     // start a second alternative HTML load as this will prevent the page load state from being

Modified: tags/Safari-607.1.3.3/Source/WebKit/UIProcess/WebPageProxy.h (235395 => 235396)


--- tags/Safari-607.1.3.3/Source/WebKit/UIProcess/WebPageProxy.h	2018-08-27 20:46:26 UTC (rev 235395)
+++ tags/Safari-607.1.3.3/Source/WebKit/UIProcess/WebPageProxy.h	2018-08-27 20:57:29 UTC (rev 235396)
@@ -453,7 +453,7 @@
     RefPtr<API::Navigation> loadRequest(WebCore::ResourceRequest&&, WebCore::ShouldOpenExternalURLsPolicy = WebCore::ShouldOpenExternalURLsPolicy::ShouldAllowExternalSchemes, API::Object* userData = nullptr);
     RefPtr<API::Navigation> loadFile(const String& fileURL, const String& resourceDirectoryURL, API::Object* userData = nullptr);
     RefPtr<API::Navigation> loadData(const IPC::DataReference&, const String& MIMEType, const String& encoding, const String& baseURL, API::Object* userData = nullptr);
-    void loadAlternateHTMLString(const String& htmlString, const WebCore::URL& baseURL, const WebCore::URL& unreachableURL, API::Object* userData = nullptr);
+    void loadAlternateHTMLString(const String& htmlString, const WebCore::URL& baseURL, const WebCore::URL& unreachableURL, API::Object* userData = nullptr, bool forSafeBrowsing = false);
     void loadWebArchiveData(API::Data*, API::Object* userData = nullptr);
     void navigateToPDFLinkWithSimulatedClick(const String& url, WebCore::IntPoint documentPoint, WebCore::IntPoint screenPoint);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to