Title: [267025] trunk/Source/WebCore
- Revision
- 267025
- Author
- [email protected]
- Date
- 2020-09-14 11:39:59 -0700 (Mon, 14 Sep 2020)
Log Message
First steps towards LFC painting in WebKit2
https://bugs.webkit.org/show_bug.cgi?id=216466
Address post-landing comments: make two constructors explicit.
* layout/display/DisplayLayerController.h:
* layout/display/DisplayView.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (267024 => 267025)
--- trunk/Source/WebCore/ChangeLog 2020-09-14 18:26:27 UTC (rev 267024)
+++ trunk/Source/WebCore/ChangeLog 2020-09-14 18:39:59 UTC (rev 267025)
@@ -3,6 +3,16 @@
First steps towards LFC painting in WebKit2
https://bugs.webkit.org/show_bug.cgi?id=216466
+ Address post-landing comments: make two constructors explicit.
+
+ * layout/display/DisplayLayerController.h:
+ * layout/display/DisplayView.h:
+
+2020-09-14 Simon Fraser <[email protected]>
+
+ First steps towards LFC painting in WebKit2
+ https://bugs.webkit.org/show_bug.cgi?id=216466
+
Reviewed by Zalan Bujtas.
Get LFC painting in WebKit2.
Modified: trunk/Source/WebCore/layout/display/DisplayLayerController.h (267024 => 267025)
--- trunk/Source/WebCore/layout/display/DisplayLayerController.h 2020-09-14 18:26:27 UTC (rev 267024)
+++ trunk/Source/WebCore/layout/display/DisplayLayerController.h 2020-09-14 18:39:59 UTC (rev 267025)
@@ -49,7 +49,7 @@
class LayerController {
WTF_MAKE_ISO_ALLOCATED(LayerController);
public:
- LayerController(View&);
+ explicit LayerController(View&);
~LayerController();
void prepareForDisplay(const Layout::LayoutState&);
Modified: trunk/Source/WebCore/layout/display/DisplayView.h (267024 => 267025)
--- trunk/Source/WebCore/layout/display/DisplayView.h 2020-09-14 18:26:27 UTC (rev 267024)
+++ trunk/Source/WebCore/layout/display/DisplayView.h 2020-09-14 18:39:59 UTC (rev 267025)
@@ -49,7 +49,7 @@
class View {
WTF_MAKE_ISO_ALLOCATED(View);
public:
- View(FrameView&);
+ explicit View(FrameView&);
~View();
void prepareForDisplay();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes