Title: [268895] trunk/Source/WebCore
Revision
268895
Author
[email protected]
Date
2020-10-22 15:06:51 -0700 (Thu, 22 Oct 2020)

Log Message

Non-unified build fixes, late-ish October 2020 edition
https://bugs.webkit.org/show_bug.cgi?id=218095

Unreviewed non-unified build fix.

No new tests needed.


* Modules/speech/SpeechRecognitionResultList.h: Include SpeechRecognitionResult.h
instead of using a forward declaration.
* layout/integration/LayoutIntegrationLineLayout.cpp: Add missing RenderImage.h header.
* page/scrolling/ScrollingTreeLatchingController.h: Add missing wtf/OptionSet.h header
and forward-declare WheelEventProcessingSteps.
* workers/WorkerOrWorkletGlobalScope.cpp: Add missing WorkerOrWorkletThread.h and
WorkerRunLoop.h headers.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (268894 => 268895)


--- trunk/Source/WebCore/ChangeLog	2020-10-22 22:01:17 UTC (rev 268894)
+++ trunk/Source/WebCore/ChangeLog	2020-10-22 22:06:51 UTC (rev 268895)
@@ -1,3 +1,20 @@
+2020-10-22  Adrian Perez de Castro  <[email protected]>
+
+        Non-unified build fixes, late-ish October 2020 edition
+        https://bugs.webkit.org/show_bug.cgi?id=218095
+
+        Unreviewed non-unified build fix.
+
+        No new tests needed.
+
+        * Modules/speech/SpeechRecognitionResultList.h: Include SpeechRecognitionResult.h
+        instead of using a forward declaration.
+        * layout/integration/LayoutIntegrationLineLayout.cpp: Add missing RenderImage.h header.
+        * page/scrolling/ScrollingTreeLatchingController.h: Add missing wtf/OptionSet.h header
+        and forward-declare WheelEventProcessingSteps.
+        * workers/WorkerOrWorkletGlobalScope.cpp: Add missing WorkerOrWorkletThread.h and
+        WorkerRunLoop.h headers.
+
 2020-10-22  Chris Dumez  <[email protected]>
 
         Web Audio continues to play when navigating off the web page via an iframe

Modified: trunk/Source/WebCore/Modules/speech/SpeechRecognitionResultList.h (268894 => 268895)


--- trunk/Source/WebCore/Modules/speech/SpeechRecognitionResultList.h	2020-10-22 22:01:17 UTC (rev 268894)
+++ trunk/Source/WebCore/Modules/speech/SpeechRecognitionResultList.h	2020-10-22 22:06:51 UTC (rev 268895)
@@ -25,13 +25,12 @@
 
 #pragma once
 
+#include "SpeechRecognitionResult.h"
 #include <wtf/IsoMalloc.h>
 #include <wtf/RefCounted.h>
 
 namespace WebCore {
 
-class SpeechRecognitionResult;
-
 class SpeechRecognitionResultList final : public RefCounted<SpeechRecognitionResultList> {
     WTF_MAKE_ISO_ALLOCATED(SpeechRecognitionResultList);
 public:

Modified: trunk/Source/WebCore/layout/integration/LayoutIntegrationLineLayout.cpp (268894 => 268895)


--- trunk/Source/WebCore/layout/integration/LayoutIntegrationLineLayout.cpp	2020-10-22 22:01:17 UTC (rev 268894)
+++ trunk/Source/WebCore/layout/integration/LayoutIntegrationLineLayout.cpp	2020-10-22 22:06:51 UTC (rev 268895)
@@ -45,6 +45,7 @@
 #include "RenderBlockFlow.h"
 #include "RenderChildIterator.h"
 #include "RenderDescendantIterator.h"
+#include "RenderImage.h"
 #include "RenderLineBreak.h"
 #include "RenderView.h"
 #include "RuntimeEnabledFeatures.h"

Modified: trunk/Source/WebCore/page/scrolling/ScrollingTreeLatchingController.h (268894 => 268895)


--- trunk/Source/WebCore/page/scrolling/ScrollingTreeLatchingController.h	2020-10-22 22:01:17 UTC (rev 268894)
+++ trunk/Source/WebCore/page/scrolling/ScrollingTreeLatchingController.h	2020-10-22 22:06:51 UTC (rev 268895)
@@ -31,11 +31,13 @@
 #include <wtf/Lock.h>
 #include <wtf/Markable.h>
 #include <wtf/MonotonicTime.h>
+#include <wtf/OptionSet.h>
 #include <wtf/Optional.h>
 
 namespace WebCore {
 
 class PlatformWheelEvent;
+enum class WheelEventProcessingSteps : uint8_t;
 
 class ScrollingTreeLatchingController {
 public:

Modified: trunk/Source/WebCore/workers/WorkerOrWorkletGlobalScope.cpp (268894 => 268895)


--- trunk/Source/WebCore/workers/WorkerOrWorkletGlobalScope.cpp	2020-10-22 22:01:17 UTC (rev 268894)
+++ trunk/Source/WebCore/workers/WorkerOrWorkletGlobalScope.cpp	2020-10-22 22:06:51 UTC (rev 268895)
@@ -28,6 +28,8 @@
 
 #include "WorkerEventLoop.h"
 #include "WorkerOrWorkletScriptController.h"
+#include "WorkerOrWorkletThread.h"
+#include "WorkerRunLoop.h"
 #include <wtf/IsoMallocInlines.h>
 
 namespace WebCore {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to