Title: [285654] trunk/Source
Revision
285654
Author
[email protected]
Date
2021-11-11 13:29:00 -0800 (Thu, 11 Nov 2021)

Log Message

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

Unreviewed non-unified build fixes.

Source/_javascript_Core:


* interpreter/Interpreter.cpp: Add missing JSWebAssemblyInstance.h header.
* jit/JITInlineCacheGenerator.cpp: Remove unneeded JIT.h, as it is already included
transitively by JITInlines.h instead.
* llint/LLIntExceptions.cpp: Replace inclusion of WasmContext.h with WasmContextInlines.h
* wasm/WasmStreamingCompiler.cpp: Add missing JSBigInt.h header.
* wasm/js/JSWebAssemblyException.cpp: Add missing AuxiliaryBarrierInlines.h, JSBigInt.h,
JSCJSValueInlines.h and JSCellInlines.h
* wasm/js/JSWebAssemblyException.h: Add missing JSObject.h header.
* wasm/js/JSWebAssemblyTag.cpp: Add missing JSCellInlines.h, JSObjectInlines.h, and
StructureInlines.h headers.
* wasm/js/JSWebAssemblyTag.h: Add missing JSObject.h header.
* wasm/js/WebAssemblyExceptionConstructor.cpp: Add missing JSWebAssemblyTag.h header.
* wasm/js/WebAssemblyExceptionPrototype.cpp: Add missing headers JSWebAssemblyException.h
and JSWebAssemblyTag.h
* wasm/js/WebAssemblyTagPrototype.cpp: Add missing headers JSCellInlines.h,
JSObjectInlines.h, JSWebAssemblyTag.h, and StructureInlines.h

Source/WebCore:

No new tests needed.


* Modules/WebGPU/GPUColorWrite.h: Remove unneeded inclusion of wtf/RefCounted.h.
* Modules/WebGPU/GPUOutOfMemoryError.h: Replace inclusion of header wtf/Ref.h with
wtf/RefPtr.h.
* Modules/WebGPU/GPURenderPassEncoder.cpp: Add missing headers GPUBindGroup,h,
GPUQuerySet.h, GPURenderBundle.h, and GPURenderPipeline.h
* Modules/WebGPU/GPUSupportedLimits.h: Remove unneeded inclusions of headers which are
picked transitively from WebGPUSupportedLimits.h
* Modules/mediastream/RTCDataChannel.cpp: Add missing header
RTCDataChannelRemoteHandlerConnection.h
* Modules/webaudio/AudioBuffer.h: Add missing _javascript_Core/GenericTypedArrayView.h header.
* bindings/js/ScriptModuleLoader.cpp: Add missing DocumentInlines.h header.
* contentextensions/ContentExtensionActions.cpp: Add missing wtf/URL.h header.
* dom/FragmentDirectiveParser.cpp: Add missing wtf/Deque.h header.
* dom/FragmentDirectiveParser.h: Add missing wtf/text/WTFString.h header.
* editing/atk/FrameSelectionAtk.cpp: Replace inclusion of header Document.h with
DocumentInlines.h.
* html/HTMLElement.cpp: Add missing EventLoop.h header inclusion.
* html/HTMLFrameElement.cpp: Add missing ElementInlines.h header inclusion.
* html/HTMLHRElement.cpp: Ditto.
* html/HTMLInputElement.cpp: Ditto.
* html/SearchInputType.cpp: Ditto.
* loader/DocumentLoader.cpp: Add missing DocumentInlines.h header inclusion.
* platform/audio/glib/MediaSessionManagerGLib.cpp: Add missing MediaSessionGLib.h header
inclusion.
* platform/gamepad/GamepadConstants.h: Add missing WTF:: namespace prefix to uses of
WTF::String.
* platform/mediastream/AudioMediaStreamTrackRenderer.cpp: Add missing inclusion of
LibWebRTCAudioModule.h header, guarded by USE(LIBWEBRTC).
* rendering/CSSFilter.cpp: Add missing inclusion of headers FilterOperations.h,
GraphicsContext.h, LengthFunctions.h, and RenderElement.h
* rendering/svg/SVGResourcesCache.cpp: Add missing inclusion of ElementInlines.h header.

Source/WebCore/PAL:


* pal/graphics/WebGPU/WebGPUColorWrite.h: Add missing wtf/RefCounted.h header.
* pal/graphics/WebGPU/WebGPUSupportedLimits.h: Add missing wtf/Ref.h header.
* pal/graphics/WebGPU/WebGPUValidationError.h: Add missing wtf/text/WTFString.h header.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (285653 => 285654)


--- trunk/Source/_javascript_Core/ChangeLog	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-11-11 21:29:00 UTC (rev 285654)
@@ -1,3 +1,27 @@
+2021-11-11  Adrian Perez de Castro  <[email protected]>
+
+        Non-unified build fixes, early November 2021 edition, bis
+        https://bugs.webkit.org/show_bug.cgi?id=232998
+
+        Unreviewed non-unified build fixes.
+
+        * interpreter/Interpreter.cpp: Add missing JSWebAssemblyInstance.h header.
+        * jit/JITInlineCacheGenerator.cpp: Remove unneeded JIT.h, as it is already included
+        transitively by JITInlines.h instead.
+        * llint/LLIntExceptions.cpp: Replace inclusion of WasmContext.h with WasmContextInlines.h
+        * wasm/WasmStreamingCompiler.cpp: Add missing JSBigInt.h header.
+        * wasm/js/JSWebAssemblyException.cpp: Add missing AuxiliaryBarrierInlines.h, JSBigInt.h,
+        JSCJSValueInlines.h and JSCellInlines.h
+        * wasm/js/JSWebAssemblyException.h: Add missing JSObject.h header.
+        * wasm/js/JSWebAssemblyTag.cpp: Add missing JSCellInlines.h, JSObjectInlines.h, and
+        StructureInlines.h headers.
+        * wasm/js/JSWebAssemblyTag.h: Add missing JSObject.h header.
+        * wasm/js/WebAssemblyExceptionConstructor.cpp: Add missing JSWebAssemblyTag.h header.
+        * wasm/js/WebAssemblyExceptionPrototype.cpp: Add missing headers JSWebAssemblyException.h
+        and JSWebAssemblyTag.h
+        * wasm/js/WebAssemblyTagPrototype.cpp: Add missing headers JSCellInlines.h,
+        JSObjectInlines.h, JSWebAssemblyTag.h, and StructureInlines.h
+
 2021-11-11  Mark Lam  <[email protected]>
 
         Rename Heap::isCurrentThreadBusy() to Heap::currentThreadIsDoingGCWork().

Modified: trunk/Source/_javascript_Core/interpreter/Interpreter.cpp (285653 => 285654)


--- trunk/Source/_javascript_Core/interpreter/Interpreter.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/_javascript_Core/interpreter/Interpreter.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -75,6 +75,7 @@
 #include <wtf/text/StringBuilder.h>
 
 #if ENABLE(WEBASSEMBLY)
+#include "JSWebAssemblyInstance.h"
 #include "WasmContextInlines.h"
 #include "WebAssemblyFunction.h"
 #endif

Modified: trunk/Source/_javascript_Core/jit/JITInlineCacheGenerator.cpp (285653 => 285654)


--- trunk/Source/_javascript_Core/jit/JITInlineCacheGenerator.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/_javascript_Core/jit/JITInlineCacheGenerator.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -32,7 +32,6 @@
 #include "CacheableIdentifierInlines.h"
 #include "CodeBlock.h"
 #include "InlineAccess.h"
-#include "JIT.h"
 #include "JITInlines.h"
 #include "LinkBuffer.h"
 #include "StructureStubInfo.h"

Modified: trunk/Source/_javascript_Core/llint/LLIntExceptions.cpp (285653 => 285654)


--- trunk/Source/_javascript_Core/llint/LLIntExceptions.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/_javascript_Core/llint/LLIntExceptions.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -29,7 +29,7 @@
 #include "LLIntCommon.h"
 #include "LLIntData.h"
 #include "LLIntThunks.h"
-#include "WasmContext.h"
+#include "WasmContextInlines.h"
 
 #if LLINT_TRACING
 #include "CatchScope.h"

Modified: trunk/Source/_javascript_Core/wasm/WasmStreamingCompiler.cpp (285653 => 285654)


--- trunk/Source/_javascript_Core/wasm/WasmStreamingCompiler.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/_javascript_Core/wasm/WasmStreamingCompiler.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -27,6 +27,7 @@
 #include "WasmStreamingCompiler.h"
 
 #include "DeferredWorkTimer.h"
+#include "JSBigInt.h"
 #include "JSWebAssembly.h"
 #include "JSWebAssemblyCompileError.h"
 #include "JSWebAssemblyHelpers.h"

Modified: trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyException.cpp (285653 => 285654)


--- trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyException.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyException.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -28,6 +28,10 @@
 
 #if ENABLE(WEBASSEMBLY)
 
+#include "AuxiliaryBarrierInlines.h"
+#include "JSBigInt.h"
+#include "JSCJSValueInlines.h"
+#include "JSCellInlines.h"
 #include "JSWebAssemblyHelpers.h"
 
 namespace JSC {

Modified: trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyException.h (285653 => 285654)


--- trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyException.h	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyException.h	2021-11-11 21:29:00 UTC (rev 285654)
@@ -27,6 +27,7 @@
 
 #if ENABLE(WEBASSEMBLY)
 
+#include "JSObject.h"
 #include "WasmTag.h"
 
 namespace JSC {

Modified: trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyTag.cpp (285653 => 285654)


--- trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyTag.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyTag.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -28,6 +28,9 @@
 
 #if ENABLE(WEBASSEMBLY)
 
+#include "JSCellInlines.h"
+#include "JSObjectInlines.h"
+#include "StructureInlines.h"
 #include "WasmTag.h"
 
 namespace JSC {

Modified: trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyTag.h (285653 => 285654)


--- trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyTag.h	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyTag.h	2021-11-11 21:29:00 UTC (rev 285654)
@@ -27,6 +27,7 @@
 
 #if ENABLE(WEBASSEMBLY)
 
+#include "JSObject.h"
 #include "WasmTag.h"
 
 namespace JSC {

Modified: trunk/Source/_javascript_Core/wasm/js/WebAssemblyExceptionConstructor.cpp (285653 => 285654)


--- trunk/Source/_javascript_Core/wasm/js/WebAssemblyExceptionConstructor.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/_javascript_Core/wasm/js/WebAssemblyExceptionConstructor.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -32,6 +32,7 @@
 #include "JSCInlines.h"
 #include "JSWebAssemblyException.h"
 #include "JSWebAssemblyHelpers.h"
+#include "JSWebAssemblyTag.h"
 #include "WebAssemblyExceptionPrototype.h"
 
 #include "WebAssemblyExceptionConstructor.lut.h"

Modified: trunk/Source/_javascript_Core/wasm/js/WebAssemblyExceptionPrototype.cpp (285653 => 285654)


--- trunk/Source/_javascript_Core/wasm/js/WebAssemblyExceptionPrototype.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/_javascript_Core/wasm/js/WebAssemblyExceptionPrototype.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -30,6 +30,8 @@
 
 #include "AuxiliaryBarrierInlines.h"
 #include "JSCInlines.h"
+#include "JSWebAssemblyException.h"
+#include "JSWebAssemblyTag.h"
 
 namespace JSC {
 static JSC_DECLARE_HOST_FUNCTION(webAssemblyExceptionProtoFuncGetArg);

Modified: trunk/Source/_javascript_Core/wasm/js/WebAssemblyTagPrototype.cpp (285653 => 285654)


--- trunk/Source/_javascript_Core/wasm/js/WebAssemblyTagPrototype.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/_javascript_Core/wasm/js/WebAssemblyTagPrototype.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -28,7 +28,11 @@
 
 #if ENABLE(WEBASSEMBLY)
 
+#include "JSCellInlines.h"
+#include "JSObjectInlines.h"
+#include "JSWebAssemblyTag.h"
 #include "ObjectConstructor.h"
+#include "StructureInlines.h"
 #include "WasmFormat.h"
 
 namespace JSC {

Modified: trunk/Source/WebCore/ChangeLog (285653 => 285654)


--- trunk/Source/WebCore/ChangeLog	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/ChangeLog	2021-11-11 21:29:00 UTC (rev 285654)
@@ -1,3 +1,44 @@
+2021-11-11  Adrian Perez de Castro  <[email protected]>
+
+        Non-unified build fixes, early November 2021 edition, bis
+        https://bugs.webkit.org/show_bug.cgi?id=232998
+
+        Unreviewed non-unified build fixes.
+
+        No new tests needed.
+
+        * Modules/WebGPU/GPUColorWrite.h: Remove unneeded inclusion of wtf/RefCounted.h.
+        * Modules/WebGPU/GPUOutOfMemoryError.h: Replace inclusion of header wtf/Ref.h with
+        wtf/RefPtr.h.
+        * Modules/WebGPU/GPURenderPassEncoder.cpp: Add missing headers GPUBindGroup,h,
+        GPUQuerySet.h, GPURenderBundle.h, and GPURenderPipeline.h
+        * Modules/WebGPU/GPUSupportedLimits.h: Remove unneeded inclusions of headers which are
+        picked transitively from WebGPUSupportedLimits.h
+        * Modules/mediastream/RTCDataChannel.cpp: Add missing header
+        RTCDataChannelRemoteHandlerConnection.h
+        * Modules/webaudio/AudioBuffer.h: Add missing _javascript_Core/GenericTypedArrayView.h header.
+        * bindings/js/ScriptModuleLoader.cpp: Add missing DocumentInlines.h header.
+        * contentextensions/ContentExtensionActions.cpp: Add missing wtf/URL.h header.
+        * dom/FragmentDirectiveParser.cpp: Add missing wtf/Deque.h header.
+        * dom/FragmentDirectiveParser.h: Add missing wtf/text/WTFString.h header.
+        * editing/atk/FrameSelectionAtk.cpp: Replace inclusion of header Document.h with
+        DocumentInlines.h.
+        * html/HTMLElement.cpp: Add missing EventLoop.h header inclusion.
+        * html/HTMLFrameElement.cpp: Add missing ElementInlines.h header inclusion.
+        * html/HTMLHRElement.cpp: Ditto.
+        * html/HTMLInputElement.cpp: Ditto.
+        * html/SearchInputType.cpp: Ditto.
+        * loader/DocumentLoader.cpp: Add missing DocumentInlines.h header inclusion.
+        * platform/audio/glib/MediaSessionManagerGLib.cpp: Add missing MediaSessionGLib.h header
+        inclusion.
+        * platform/gamepad/GamepadConstants.h: Add missing WTF:: namespace prefix to uses of
+        WTF::String.
+        * platform/mediastream/AudioMediaStreamTrackRenderer.cpp: Add missing inclusion of
+        LibWebRTCAudioModule.h header, guarded by USE(LIBWEBRTC).
+        * rendering/CSSFilter.cpp: Add missing inclusion of headers FilterOperations.h,
+        GraphicsContext.h, LengthFunctions.h, and RenderElement.h
+        * rendering/svg/SVGResourcesCache.cpp: Add missing inclusion of ElementInlines.h header.
+
 2021-11-11  Mark Lam  <[email protected]>
 
         Rename Heap::isCurrentThreadBusy() to Heap::currentThreadIsDoingGCWork().

Modified: trunk/Source/WebCore/Modules/WebGPU/GPUColorWrite.h (285653 => 285654)


--- trunk/Source/WebCore/Modules/WebGPU/GPUColorWrite.h	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/Modules/WebGPU/GPUColorWrite.h	2021-11-11 21:29:00 UTC (rev 285654)
@@ -30,7 +30,6 @@
 #include "GPUIntegralTypes.h"
 #include <cstdint>
 #include <pal/graphics/WebGPU/WebGPUColorWrite.h>
-#include <wtf/RefCounted.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/Modules/WebGPU/GPUOutOfMemoryError.h (285653 => 285654)


--- trunk/Source/WebCore/Modules/WebGPU/GPUOutOfMemoryError.h	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/Modules/WebGPU/GPUOutOfMemoryError.h	2021-11-11 21:29:00 UTC (rev 285654)
@@ -26,8 +26,8 @@
 #pragma once
 
 #include <pal/graphics/WebGPU/WebGPUOutOfMemoryError.h>
-#include <wtf/Ref.h>
 #include <wtf/RefCounted.h>
+#include <wtf/RefPtr.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/Modules/WebGPU/GPURenderPassEncoder.cpp (285653 => 285654)


--- trunk/Source/WebCore/Modules/WebGPU/GPURenderPassEncoder.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/Modules/WebGPU/GPURenderPassEncoder.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -28,7 +28,11 @@
 #include "config.h"
 #include "GPURenderPassEncoder.h"
 
+#include "GPUBindGroup.h"
 #include "GPUBuffer.h"
+#include "GPUQuerySet.h"
+#include "GPURenderBundle.h"
+#include "GPURenderPipeline.h"
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/Modules/WebGPU/GPUSupportedLimits.h (285653 => 285654)


--- trunk/Source/WebCore/Modules/WebGPU/GPUSupportedLimits.h	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/Modules/WebGPU/GPUSupportedLimits.h	2021-11-11 21:29:00 UTC (rev 285654)
@@ -25,10 +25,7 @@
 
 #pragma once
 
-#include <cstdint>
 #include <pal/graphics/WebGPU/WebGPUSupportedLimits.h>
-#include <wtf/Ref.h>
-#include <wtf/RefCounted.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/Modules/mediastream/RTCDataChannel.cpp (285653 => 285654)


--- trunk/Source/WebCore/Modules/mediastream/RTCDataChannel.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/Modules/mediastream/RTCDataChannel.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -34,6 +34,7 @@
 #include "Logging.h"
 #include "MessageEvent.h"
 #include "RTCDataChannelRemoteHandler.h"
+#include "RTCDataChannelRemoteHandlerConnection.h"
 #include "RTCErrorEvent.h"
 #include "ScriptExecutionContext.h"
 #include "SharedBuffer.h"

Modified: trunk/Source/WebCore/Modules/webaudio/AudioBuffer.h (285653 => 285654)


--- trunk/Source/WebCore/Modules/webaudio/AudioBuffer.h	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/Modules/webaudio/AudioBuffer.h	2021-11-11 21:29:00 UTC (rev 285654)
@@ -33,6 +33,7 @@
 #include "ExceptionOr.h"
 #include "JSValueInWrappedObject.h"
 #include <_javascript_Core/Forward.h>
+#include <_javascript_Core/GenericTypedArrayView.h>
 #include <wtf/Lock.h>
 #include <wtf/Vector.h>
 

Modified: trunk/Source/WebCore/PAL/ChangeLog (285653 => 285654)


--- trunk/Source/WebCore/PAL/ChangeLog	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/PAL/ChangeLog	2021-11-11 21:29:00 UTC (rev 285654)
@@ -1,3 +1,14 @@
+2021-11-11  Adrian Perez de Castro  <[email protected]>
+
+        Non-unified build fixes, early November 2021 edition, bis
+        https://bugs.webkit.org/show_bug.cgi?id=232998
+
+        Unreviewed non-unified build fixes.
+
+        * pal/graphics/WebGPU/WebGPUColorWrite.h: Add missing wtf/RefCounted.h header.
+        * pal/graphics/WebGPU/WebGPUSupportedLimits.h: Add missing wtf/Ref.h header.
+        * pal/graphics/WebGPU/WebGPUValidationError.h: Add missing wtf/text/WTFString.h header.
+
 2021-11-10  Jer Noble  <[email protected]>
 
         [iOS] Adopt -[AVAudioSession setAuditTokensForProcessAssertion:]

Modified: trunk/Source/WebCore/PAL/pal/graphics/WebGPU/WebGPUColorWrite.h (285653 => 285654)


--- trunk/Source/WebCore/PAL/pal/graphics/WebGPU/WebGPUColorWrite.h	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/PAL/pal/graphics/WebGPU/WebGPUColorWrite.h	2021-11-11 21:29:00 UTC (rev 285654)
@@ -29,6 +29,7 @@
 #include "WebGPUBlendOperation.h"
 #include "WebGPUIntegralTypes.h"
 #include <cstdint>
+#include <wtf/RefCounted.h>
 
 namespace PAL {
 namespace WebGPU {

Modified: trunk/Source/WebCore/PAL/pal/graphics/WebGPU/WebGPUSupportedLimits.h (285653 => 285654)


--- trunk/Source/WebCore/PAL/pal/graphics/WebGPU/WebGPUSupportedLimits.h	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/PAL/pal/graphics/WebGPU/WebGPUSupportedLimits.h	2021-11-11 21:29:00 UTC (rev 285654)
@@ -26,6 +26,7 @@
 #pragma once
 
 #include <cstdint>
+#include <wtf/Ref.h>
 #include <wtf/RefCounted.h>
 
 namespace PAL {

Modified: trunk/Source/WebCore/PAL/pal/graphics/WebGPU/WebGPUValidationError.h (285653 => 285654)


--- trunk/Source/WebCore/PAL/pal/graphics/WebGPU/WebGPUValidationError.h	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/PAL/pal/graphics/WebGPU/WebGPUValidationError.h	2021-11-11 21:29:00 UTC (rev 285654)
@@ -27,6 +27,7 @@
 
 #include <wtf/Ref.h>
 #include <wtf/RefCounted.h>
+#include <wtf/text/WTFString.h>
 
 namespace PAL {
 namespace WebGPU {

Modified: trunk/Source/WebCore/bindings/js/ScriptModuleLoader.cpp (285653 => 285654)


--- trunk/Source/WebCore/bindings/js/ScriptModuleLoader.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/bindings/js/ScriptModuleLoader.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -29,6 +29,7 @@
 #include "CachedModuleScriptLoader.h"
 #include "CachedScript.h"
 #include "CachedScriptFetcher.h"
+#include "DocumentInlines.h"
 #include "Frame.h"
 #include "JSDOMBinding.h"
 #include "JSDOMPromiseDeferred.h"

Modified: trunk/Source/WebCore/contentextensions/ContentExtensionActions.cpp (285653 => 285654)


--- trunk/Source/WebCore/contentextensions/ContentExtensionActions.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/contentextensions/ContentExtensionActions.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -30,6 +30,7 @@
 
 #include "ContentExtensionError.h"
 #include <wtf/CrossThreadCopier.h>
+#include <wtf/URL.h>
 
 namespace WebCore::ContentExtensions {
 

Modified: trunk/Source/WebCore/dom/FragmentDirectiveParser.cpp (285653 => 285654)


--- trunk/Source/WebCore/dom/FragmentDirectiveParser.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/dom/FragmentDirectiveParser.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -27,6 +27,7 @@
 #include "FragmentDirectiveParser.h"
 
 #include "Logging.h"
+#include <wtf/Deque.h>
 #include <wtf/URL.h>
 #include <wtf/text/TextStream.h>
 

Modified: trunk/Source/WebCore/dom/FragmentDirectiveParser.h (285653 => 285654)


--- trunk/Source/WebCore/dom/FragmentDirectiveParser.h	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/dom/FragmentDirectiveParser.h	2021-11-11 21:29:00 UTC (rev 285654)
@@ -26,6 +26,7 @@
 #pragma once
 
 #include <wtf/Forward.h>
+#include <wtf/text/WTFString.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/editing/atk/FrameSelectionAtk.cpp (285653 => 285654)


--- trunk/Source/WebCore/editing/atk/FrameSelectionAtk.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/editing/atk/FrameSelectionAtk.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -23,7 +23,7 @@
 #if ENABLE(ACCESSIBILITY) && USE(ATK)
 
 #include "AXObjectCache.h"
-#include "Document.h"
+#include "DocumentInlines.h"
 #include "Frame.h"
 #include "RenderListItem.h"
 #include "WebKitAccessible.h"

Modified: trunk/Source/WebCore/html/HTMLElement.cpp (285653 => 285654)


--- trunk/Source/WebCore/html/HTMLElement.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/html/HTMLElement.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -39,6 +39,7 @@
 #include "Event.h"
 #include "EventHandler.h"
 #include "EventListener.h"
+#include "EventLoop.h"
 #include "EventNames.h"
 #include "Frame.h"
 #include "FrameLoader.h"

Modified: trunk/Source/WebCore/html/HTMLFrameElement.cpp (285653 => 285654)


--- trunk/Source/WebCore/html/HTMLFrameElement.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/html/HTMLFrameElement.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -24,6 +24,7 @@
 #include "config.h"
 #include "HTMLFrameElement.h"
 
+#include "ElementInlines.h"
 #include "Frame.h"
 #include "HTMLFrameSetElement.h"
 #include "HTMLNames.h"

Modified: trunk/Source/WebCore/html/HTMLHRElement.cpp (285653 => 285654)


--- trunk/Source/WebCore/html/HTMLHRElement.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/html/HTMLHRElement.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -26,6 +26,7 @@
 #include "CSSPropertyNames.h"
 #include "CSSValueKeywords.h"
 #include "CSSValuePool.h"
+#include "ElementInlines.h"
 #include "HTMLNames.h"
 #include "HTMLParserIdioms.h"
 #include "StyleProperties.h"

Modified: trunk/Source/WebCore/html/HTMLInputElement.cpp (285653 => 285654)


--- trunk/Source/WebCore/html/HTMLInputElement.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/html/HTMLInputElement.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -40,6 +40,7 @@
 #include "DateTimeChooser.h"
 #include "DocumentInlines.h"
 #include "Editor.h"
+#include "ElementInlines.h"
 #include "EventNames.h"
 #include "FileInputType.h"
 #include "FileList.h"

Modified: trunk/Source/WebCore/html/SearchInputType.cpp (285653 => 285654)


--- trunk/Source/WebCore/html/SearchInputType.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/html/SearchInputType.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -32,6 +32,7 @@
 #include "config.h"
 #include "SearchInputType.h"
 
+#include "ElementInlines.h"
 #include "HTMLInputElement.h"
 #include "HTMLNames.h"
 #include "InputTypeNames.h"

Modified: trunk/Source/WebCore/loader/DocumentLoader.cpp (285653 => 285654)


--- trunk/Source/WebCore/loader/DocumentLoader.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/loader/DocumentLoader.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -42,7 +42,7 @@
 #include "CrossOriginOpenerPolicy.h"
 #include "CustomHeaderFields.h"
 #include "DOMWindow.h"
-#include "Document.h"
+#include "DocumentInlines.h"
 #include "DocumentParser.h"
 #include "DocumentWriter.h"
 #include "ElementChildIterator.h"

Modified: trunk/Source/WebCore/platform/audio/glib/MediaSessionManagerGLib.cpp (285653 => 285654)


--- trunk/Source/WebCore/platform/audio/glib/MediaSessionManagerGLib.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/platform/audio/glib/MediaSessionManagerGLib.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -24,6 +24,7 @@
 #include "AudioSession.h"
 #include "HTMLMediaElement.h"
 #include "MediaPlayer.h"
+#include "MediaSessionGLib.h"
 #include "MediaStrategy.h"
 #include "NowPlayingInfo.h"
 #include "PlatformMediaSession.h"

Modified: trunk/Source/WebCore/platform/gamepad/GamepadConstants.h (285653 => 285654)


--- trunk/Source/WebCore/platform/gamepad/GamepadConstants.h	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/platform/gamepad/GamepadConstants.h	2021-11-11 21:29:00 UTC (rev 285654)
@@ -61,9 +61,9 @@
 extern const size_t numberOfStandardGamepadButtonsWithHomeButton;
 extern const GamepadButtonRole maximumGamepadButton;
 
-const String& standardGamepadMappingString();
+const WTF::String& standardGamepadMappingString();
 #if ENABLE(WEBXR)
-const String& xrStandardGamepadMappingString();
+const WTF::String& xrStandardGamepadMappingString();
 #endif
 
 } // namespace WebCore

Modified: trunk/Source/WebCore/platform/mediastream/AudioMediaStreamTrackRenderer.cpp (285653 => 285654)


--- trunk/Source/WebCore/platform/mediastream/AudioMediaStreamTrackRenderer.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/platform/mediastream/AudioMediaStreamTrackRenderer.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -34,6 +34,10 @@
 #include "AudioMediaStreamTrackRendererCocoa.h"
 #endif
 
+#if USE(LIBWEBRTC)
+#include "LibWebRTCAudioModule.h"
+#endif
+
 namespace WTF {
 class MediaTime;
 }

Modified: trunk/Source/WebCore/rendering/CSSFilter.cpp (285653 => 285654)


--- trunk/Source/WebCore/rendering/CSSFilter.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/rendering/CSSFilter.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -33,8 +33,12 @@
 #include "FEGaussianBlur.h"
 #include "FEMerge.h"
 #include "FilterEffectRenderer.h"
+#include "FilterOperations.h"
+#include "GraphicsContext.h"
+#include "LengthFunctions.h"
 #include "Logging.h"
 #include "ReferencedSVGResources.h"
+#include "RenderElement.h"
 #include "SVGFilter.h"
 #include "SVGFilterBuilder.h"
 #include "SVGFilterElement.h"

Modified: trunk/Source/WebCore/rendering/svg/SVGResourcesCache.cpp (285653 => 285654)


--- trunk/Source/WebCore/rendering/svg/SVGResourcesCache.cpp	2021-11-11 21:24:11 UTC (rev 285653)
+++ trunk/Source/WebCore/rendering/svg/SVGResourcesCache.cpp	2021-11-11 21:29:00 UTC (rev 285654)
@@ -20,6 +20,7 @@
 #include "config.h"
 #include "SVGResourcesCache.h"
 
+#include "ElementInlines.h"
 #include "RenderSVGResourceContainer.h"
 #include "SVGResources.h"
 #include "SVGResourcesCycleSolver.h"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to