Title: [238059] trunk/Source/WebKitLegacy/win
Revision
238059
Author
[email protected]
Date
2018-11-09 15:04:58 -0800 (Fri, 09 Nov 2018)

Log Message

Unreviewed Windows build fix for r238049.

* WebView.cpp:
(WebView::initWithFrame):

Modified Paths

Diff

Modified: trunk/Source/WebKitLegacy/win/ChangeLog (238058 => 238059)


--- trunk/Source/WebKitLegacy/win/ChangeLog	2018-11-09 22:57:31 UTC (rev 238058)
+++ trunk/Source/WebKitLegacy/win/ChangeLog	2018-11-09 23:04:58 UTC (rev 238059)
@@ -1,5 +1,12 @@
 2018-11-09  Ross Kirsling  <[email protected]>
 
+        Unreviewed Windows build fix for r238049.
+
+        * WebView.cpp:
+        (WebView::initWithFrame):
+
+2018-11-09  Ross Kirsling  <[email protected]>
+
         Unreviewed MSVC build fix after r238039 (and r238046).
 
         * WebDocumentLoader.h:

Modified: trunk/Source/WebKitLegacy/win/WebView.cpp (238058 => 238059)


--- trunk/Source/WebKitLegacy/win/WebView.cpp	2018-11-09 22:57:31 UTC (rev 238058)
+++ trunk/Source/WebKitLegacy/win/WebView.cpp	2018-11-09 23:04:58 UTC (rev 238059)
@@ -3128,10 +3128,8 @@
     m_page = new Page(WTFMove(configuration));
     provideGeolocationTo(m_page, *new WebGeolocationClient(this));
 
-    unsigned layoutMilestones = DidFirstLayout | DidFirstVisuallyNonEmptyLayout;
-    m_page->addLayoutMilestones(static_cast<LayoutMilestones>(layoutMilestones));
+    m_page->addLayoutMilestones({ DidFirstLayout, DidFirstVisuallyNonEmptyLayout });
 
-
     if (m_uiDelegate) {
         BString path;
         if (SUCCEEDED(m_uiDelegate->ftpDirectoryTemplatePath(this, &path)))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to