Title: [280131] releases/WebKitGTK/webkit-2.32/Source/WebKit
Revision
280131
Author
[email protected]
Date
2021-07-21 07:44:25 -0700 (Wed, 21 Jul 2021)

Log Message

Merge r275802 - Properly use CompletionHandler when USE_OPENGL_OR_ES is set to OFF
https://bugs.webkit.org/show_bug.cgi?id=224149

Patch by Charlène Wendling <[email protected]> on 2021-04-10
Reviewed by Fujii Hironori.

* WebProcess/WebPage/CoordinatedGraphics/LayerTreeHost.h:
(WebKit::LayerTreeHost::forceRepaintAsync):

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.32/Source/WebKit/ChangeLog (280130 => 280131)


--- releases/WebKitGTK/webkit-2.32/Source/WebKit/ChangeLog	2021-07-21 13:40:16 UTC (rev 280130)
+++ releases/WebKitGTK/webkit-2.32/Source/WebKit/ChangeLog	2021-07-21 14:44:25 UTC (rev 280131)
@@ -1,3 +1,13 @@
+2021-04-10  Charlène Wendling  <[email protected]>
+
+        Properly use CompletionHandler when USE_OPENGL_OR_ES is set to OFF
+        https://bugs.webkit.org/show_bug.cgi?id=224149
+
+        Reviewed by Fujii Hironori.
+
+        * WebProcess/WebPage/CoordinatedGraphics/LayerTreeHost.h:
+        (WebKit::LayerTreeHost::forceRepaintAsync):
+
 2021-07-12  Adrian Perez de Castro  <[email protected]>
 
         Unreviewed. Update OptionsWPE.cmake and NEWS for the 2.32.2 release

Modified: releases/WebKitGTK/webkit-2.32/Source/WebKit/WebProcess/WebPage/CoordinatedGraphics/LayerTreeHost.h (280130 => 280131)


--- releases/WebKitGTK/webkit-2.32/Source/WebKit/WebProcess/WebPage/CoordinatedGraphics/LayerTreeHost.h	2021-07-21 13:40:16 UTC (rev 280130)
+++ releases/WebKitGTK/webkit-2.32/Source/WebKit/WebProcess/WebPage/CoordinatedGraphics/LayerTreeHost.h	2021-07-21 14:44:25 UTC (rev 280131)
@@ -213,7 +213,7 @@
 inline void LayerTreeHost::setViewOverlayRootLayer(WebCore::GraphicsLayer*) { }
 inline void LayerTreeHost::scrollNonCompositedContents(const WebCore::IntRect&) { }
 inline void LayerTreeHost::forceRepaint() { }
-inline bool LayerTreeHost::forceRepaintAsync(CompletionHandler<void()>&) { return false; }
+inline void LayerTreeHost::forceRepaintAsync(CompletionHandler<void()>&&) { }
 inline void LayerTreeHost::sizeDidChange(const WebCore::IntSize&) { }
 inline void LayerTreeHost::pauseRendering() { }
 inline void LayerTreeHost::resumeRendering() { }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to