Title: [237165] trunk/Source
- Revision
- 237165
- Author
- [email protected]
- Date
- 2018-10-15 18:02:54 -0700 (Mon, 15 Oct 2018)
Log Message
Source/WebKit:
Fix GTK build, even though bots are not working right now.
* UIProcess/gtk/WebInspectorProxyGtk.cpp:
(WebKit::WebInspectorProxy::platformCreateFrontendPage):
Source/WebKitLegacy/win:
Fix Windows build.
* WebView.cpp:
(WebView::loadBackForwardListFromOtherView):
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (237164 => 237165)
--- trunk/Source/WebKit/ChangeLog 2018-10-16 00:56:23 UTC (rev 237164)
+++ trunk/Source/WebKit/ChangeLog 2018-10-16 01:02:54 UTC (rev 237165)
@@ -1,5 +1,12 @@
2018-10-15 Alex Christensen <[email protected]>
+ Fix GTK build, even though bots are not working right now.
+
+ * UIProcess/gtk/WebInspectorProxyGtk.cpp:
+ (WebKit::WebInspectorProxy::platformCreateFrontendPage):
+
+2018-10-15 Alex Christensen <[email protected]>
+
Fix WinCairo build after r237146
* UIProcess/win/WebInspectorProxyWin.cpp:
Modified: trunk/Source/WebKit/UIProcess/gtk/WebInspectorProxyGtk.cpp (237164 => 237165)
--- trunk/Source/WebKit/UIProcess/gtk/WebInspectorProxyGtk.cpp 2018-10-16 00:56:23 UTC (rev 237164)
+++ trunk/Source/WebKit/UIProcess/gtk/WebInspectorProxyGtk.cpp 2018-10-16 01:02:54 UTC (rev 237165)
@@ -145,7 +145,7 @@
#endif
preferences->setJavaScriptRuntimeFlags({
});
- RefPtr<WebPageGroup> pageGroup = WebPageGroup::create(inspectorPageGroupIdentifierForPage(inspectedPage()), false, false);
+ RefPtr<WebPageGroup> pageGroup = WebPageGroup::create(inspectorPageGroupIdentifierForPage(inspectedPage()));
auto pageConfiguration = API::PageConfiguration::create();
pageConfiguration->setProcessPool(&inspectorProcessPool(inspectionLevel()));
Modified: trunk/Source/WebKitLegacy/win/ChangeLog (237164 => 237165)
--- trunk/Source/WebKitLegacy/win/ChangeLog 2018-10-16 00:56:23 UTC (rev 237164)
+++ trunk/Source/WebKitLegacy/win/ChangeLog 2018-10-16 01:02:54 UTC (rev 237165)
@@ -1,5 +1,12 @@
2018-10-15 Alex Christensen <[email protected]>
+ Fix Windows build.
+
+ * WebView.cpp:
+ (WebView::loadBackForwardListFromOtherView):
+
+2018-10-15 Alex Christensen <[email protected]>
+
Fix WinCairo build.
* WebView.cpp:
Modified: trunk/Source/WebKitLegacy/win/WebView.cpp (237164 => 237165)
--- trunk/Source/WebKitLegacy/win/WebView.cpp 2018-10-16 00:56:23 UTC (rev 237164)
+++ trunk/Source/WebKitLegacy/win/WebView.cpp 2018-10-16 01:02:54 UTC (rev 237165)
@@ -5971,7 +5971,7 @@
Ref<HistoryItem> newItem = otherBackForward.itemAtIndex(i)->copy();
if (!i)
newItemToGoTo = newItem.ptr();
- backForward.client()->addItem(WTFMove(newItem));
+ backForward.client().addItem(WTFMove(newItem));
}
ASSERT(newItemToGoTo);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes