Title: [269294] trunk/Source/WebCore
Revision
269294
Author
[email protected]
Date
2020-11-03 04:55:56 -0800 (Tue, 03 Nov 2020)

Log Message

Non-unified build fixes, early November 2020 edition
https://bugs.webkit.org/show_bug.cgi?id=218464

Unreviewed non-unified build fixes.

No new tests needed.


* editing/VisibleUnits.cpp: Add missing InlineRunAndOffset.h header.
* inspector/InspectorFrontendAPIDispatcher.cpp: Add missing InspectorController.h and
wtf/RunLoop.h headers.
(WebCore::InspectorFrontendAPIDispatcher::frontendGlobalObject): Add missing JSC::
namespace to usage of JSC::JSGlobalObject type.
* layout/integration/LayoutIntegrationLineIterator.cpp: Add missing RenderBlockFlow.h
header.
* rendering/RenderBlockFlow.cpp: Add missing LayoutIntegrationRunIterator.h header.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (269293 => 269294)


--- trunk/Source/WebCore/ChangeLog	2020-11-03 12:33:03 UTC (rev 269293)
+++ trunk/Source/WebCore/ChangeLog	2020-11-03 12:55:56 UTC (rev 269294)
@@ -1,3 +1,21 @@
+2020-11-03  Adrian Perez de Castro  <[email protected]>
+
+        Non-unified build fixes, early November 2020 edition
+        https://bugs.webkit.org/show_bug.cgi?id=218464
+
+        Unreviewed non-unified build fixes.
+
+        No new tests needed.
+
+        * editing/VisibleUnits.cpp: Add missing InlineRunAndOffset.h header.
+        * inspector/InspectorFrontendAPIDispatcher.cpp: Add missing InspectorController.h and
+        wtf/RunLoop.h headers.
+        (WebCore::InspectorFrontendAPIDispatcher::frontendGlobalObject): Add missing JSC::
+        namespace to usage of JSC::JSGlobalObject type.
+        * layout/integration/LayoutIntegrationLineIterator.cpp: Add missing RenderBlockFlow.h
+        header.
+        * rendering/RenderBlockFlow.cpp: Add missing LayoutIntegrationRunIterator.h header.
+
 2020-11-03  Youenn Fablet  <[email protected]>
 
         Allow low latency H264 encoder in GPUProcess

Modified: trunk/Source/WebCore/editing/VisibleUnits.cpp (269293 => 269294)


--- trunk/Source/WebCore/editing/VisibleUnits.cpp	2020-11-03 12:33:03 UTC (rev 269293)
+++ trunk/Source/WebCore/editing/VisibleUnits.cpp	2020-11-03 12:55:56 UTC (rev 269294)
@@ -31,6 +31,7 @@
 #include "HTMLBRElement.h"
 #include "HTMLElement.h"
 #include "HTMLNames.h"
+#include "InlineRunAndOffset.h"
 #include "InlineTextBox.h"
 #include "NodeTraversal.h"
 #include "Range.h"

Modified: trunk/Source/WebCore/inspector/InspectorFrontendAPIDispatcher.cpp (269293 => 269294)


--- trunk/Source/WebCore/inspector/InspectorFrontendAPIDispatcher.cpp	2020-11-03 12:33:03 UTC (rev 269293)
+++ trunk/Source/WebCore/inspector/InspectorFrontendAPIDispatcher.cpp	2020-11-03 12:55:56 UTC (rev 269294)
@@ -27,6 +27,7 @@
 #include "InspectorFrontendAPIDispatcher.h"
 
 #include "Frame.h"
+#include "InspectorController.h"
 #include "Page.h"
 #include "ScriptController.h"
 #include "ScriptDisallowedScope.h"
@@ -33,6 +34,7 @@
 #include "ScriptSourceCode.h"
 #include "ScriptState.h"
 #include <_javascript_Core/FrameTracers.h>
+#include <wtf/RunLoop.h>
 
 
 namespace WebCore {
@@ -96,7 +98,7 @@
     evaluateQueuedExpressions();
 }
 
-JSGlobalObject* InspectorFrontendAPIDispatcher::frontendGlobalObject()
+JSC::JSGlobalObject* InspectorFrontendAPIDispatcher::frontendGlobalObject()
 {
     if (!m_frontendPage)
         return nullptr;

Modified: trunk/Source/WebCore/layout/integration/LayoutIntegrationLineIterator.cpp (269293 => 269294)


--- trunk/Source/WebCore/layout/integration/LayoutIntegrationLineIterator.cpp	2020-11-03 12:33:03 UTC (rev 269293)
+++ trunk/Source/WebCore/layout/integration/LayoutIntegrationLineIterator.cpp	2020-11-03 12:55:56 UTC (rev 269294)
@@ -28,6 +28,7 @@
 
 #include "LayoutIntegrationLineLayout.h"
 #include "LayoutIntegrationRunIterator.h"
+#include "RenderBlockFlow.h"
 
 namespace WebCore {
 namespace LayoutIntegration {

Modified: trunk/Source/WebCore/rendering/RenderBlockFlow.cpp (269293 => 269294)


--- trunk/Source/WebCore/rendering/RenderBlockFlow.cpp	2020-11-03 12:33:03 UTC (rev 269293)
+++ trunk/Source/WebCore/rendering/RenderBlockFlow.cpp	2020-11-03 12:55:56 UTC (rev 269294)
@@ -37,6 +37,7 @@
 #include "InlineTextBox.h"
 #include "LayoutIntegrationLineIterator.h"
 #include "LayoutIntegrationLineLayout.h"
+#include "LayoutIntegrationRunIterator.h"
 #include "LayoutRepainter.h"
 #include "Logging.h"
 #include "RenderCombineText.h"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to