Title: [238358] trunk/Source/WebKit
Revision
238358
Author
ross.kirsl...@sony.com
Date
2018-11-17 17:54:55 -0800 (Sat, 17 Nov 2018)

Log Message

Unreviewed WinCairo build fix for r238353.

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::continueNavigationInNewProcess):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (238357 => 238358)


--- trunk/Source/WebKit/ChangeLog	2018-11-18 00:51:42 UTC (rev 238357)
+++ trunk/Source/WebKit/ChangeLog	2018-11-18 01:54:55 UTC (rev 238358)
@@ -1,3 +1,10 @@
+2018-11-17  Ross Kirsling  <ross.kirsl...@sony.com>
+
+        Unreviewed WinCairo build fix for r238353.
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::continueNavigationInNewProcess):
+
 2018-11-17  Chris Dumez  <cdu...@apple.com>
 
         ASSERTION FAILED: m_messageReceivers.contains(...) under ViewGestureController removeMessageReceiver

Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.cpp (238357 => 238358)


--- trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2018-11-18 00:51:42 UTC (rev 238357)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2018-11-18 01:54:55 UTC (rev 238358)
@@ -2697,7 +2697,7 @@
             loadRequestWithNavigation(navigation, ResourceRequest { navigation->currentRequest() }, WebCore::ShouldOpenExternalURLsPolicy::ShouldAllowExternalSchemes, nullptr, ShouldTreatAsContinuingLoad::Yes);
 
         ASSERT(!m_mainFrame);
-        m_mainFrameCreationHandler = [this, protectedThis = makeRef(*this), navigation = navigation.copyRef(), request =  navigation->currentRequest(), mainFrameURL, isServerRedirect = navigation->currentRequestIsRedirect()]() mutable {
+        m_mainFrameCreationHandler = [this, protectedThis = WTFMove(protectedThis), navigation = navigation.copyRef(), request =  navigation->currentRequest(), mainFrameURL, isServerRedirect = navigation->currentRequestIsRedirect()]() mutable {
             ASSERT(m_mainFrame);
             // Restore the main frame's committed URL as some clients may rely on it until the next load is committed.
             m_mainFrame->frameLoadState().setURL(mainFrameURL);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to