Title: [218671] trunk/Source/WebCore
Revision
218671
Author
[email protected]
Date
2017-06-21 18:25:50 -0700 (Wed, 21 Jun 2017)

Log Message

Unreviewed, fix Window Debug build after r218660.

* rendering/SimpleLineLayout.cpp:
(WebCore::SimpleLineLayout::canUseForWithReason):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (218670 => 218671)


--- trunk/Source/WebCore/ChangeLog	2017-06-22 01:22:40 UTC (rev 218670)
+++ trunk/Source/WebCore/ChangeLog	2017-06-22 01:25:50 UTC (rev 218671)
@@ -1,3 +1,10 @@
+2017-06-21  Chris Dumez  <[email protected]>
+
+        Unreviewed, fix Window Debug build after r218660.
+
+        * rendering/SimpleLineLayout.cpp:
+        (WebCore::SimpleLineLayout::canUseForWithReason):
+
 2017-06-21  Andreas Kling  <[email protected]>
 
         Increase memory kill limits for WebContent processes that manage multiple tabs.

Modified: trunk/Source/WebCore/rendering/SimpleLineLayout.cpp (218670 => 218671)


--- trunk/Source/WebCore/rendering/SimpleLineLayout.cpp	2017-06-22 01:22:40 UTC (rev 218670)
+++ trunk/Source/WebCore/rendering/SimpleLineLayout.cpp	2017-06-22 01:25:50 UTC (rev 218671)
@@ -254,9 +254,9 @@
 #ifndef NDEBUG
     static std::once_flag onceFlag;
     std::call_once(onceFlag, [] {
-        registerNotifyCallback("com.apple.WebKit.showSimpleLineLayoutCoverage", printSimpleLineLayoutCoverage);
-        registerNotifyCallback("com.apple.WebKit.showSimpleLineLayoutReasons", printSimpleLineLayoutBlockList);
-        registerNotifyCallback("com.apple.WebKit.toggleSimpleLineLayout", toggleSimpleLineLayout);
+        registerNotifyCallback("com.apple.WebKit.showSimpleLineLayoutCoverage", WTF::Function<void()> { printSimpleLineLayoutCoverage });
+        registerNotifyCallback("com.apple.WebKit.showSimpleLineLayoutReasons", WTF::Function<void()> { printSimpleLineLayoutBlockList });
+        registerNotifyCallback("com.apple.WebKit.toggleSimpleLineLayout", WTF::Function<void()> { toggleSimpleLineLayout });
     });
 #endif
     AvoidanceReasonFlags reasons = { };
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to