Title: [258575] trunk/Source/WebKit
Revision
258575
Author
[email protected]
Date
2020-03-17 12:49:52 -0700 (Tue, 17 Mar 2020)

Log Message

Fix GTK build.
https://bugs.webkit.org/show_bug.cgi?id=209192

* UIProcess/API/glib/WebKitUIClient.cpp:
I committed r258574 too fast.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (258574 => 258575)


--- trunk/Source/WebKit/ChangeLog	2020-03-17 19:46:46 UTC (rev 258574)
+++ trunk/Source/WebKit/ChangeLog	2020-03-17 19:49:52 UTC (rev 258575)
@@ -1,5 +1,13 @@
 2020-03-17  Alex Christensen  <[email protected]>
 
+        Fix GTK build.
+        https://bugs.webkit.org/show_bug.cgi?id=209192
+
+        * UIProcess/API/glib/WebKitUIClient.cpp:
+        I committed r258574 too fast.
+
+2020-03-17  Alex Christensen  <[email protected]>
+
         Add WKUIDelegatePrivate SPI _webView:printFrame:completionHandler:
         https://bugs.webkit.org/show_bug.cgi?id=209192
         <rdar://problem/51313336>

Modified: trunk/Source/WebKit/UIProcess/API/glib/WebKitUIClient.cpp (258574 => 258575)


--- trunk/Source/WebKit/UIProcess/API/glib/WebKitUIClient.cpp	2020-03-17 19:46:46 UTC (rev 258574)
+++ trunk/Source/WebKit/UIProcess/API/glib/WebKitUIClient.cpp	2020-03-17 19:49:52 UTC (rev 258575)
@@ -274,9 +274,10 @@
     }
 
 #if PLATFORM(GTK)
-    void printFrame(WebPageProxy&, WebFrameProxy& frame) final
+    void printFrame(WebPageProxy&, WebFrameProxy& frame, CompletionHandler<void()>&& completionHandler) final
     {
         webkitWebViewPrintFrame(m_webView, &frame);
+        completionHandler();
     }
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to