Title: [286138] trunk/Source
Revision
286138
Author
[email protected]
Date
2021-11-23 13:05:08 -0800 (Tue, 23 Nov 2021)

Log Message

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

Unreviewed non-unified build fixes.


Source/_javascript_Core:

* heap/IsoHeapCellType.h:
* jit/ThunkGenerators.h:

Source/WebCore:

* Modules/WebGPU/GPUColorWrite.h:
* Modules/filesystemaccess/FileSystemFileHandle.cpp:
* inspector/WorkerInspectorController.cpp:
* layout/integration/LayoutIntegrationBoxTree.cpp:
* layout/integration/LayoutIntegrationBoxTree.h:
* page/DOMWindow.cpp:
* platform/graphics/filters/FEComponentTransfer.cpp:
* platform/graphics/filters/FEConvolveMatrix.cpp:
* platform/graphics/filters/FEDiffuseLighting.cpp:
* platform/graphics/filters/FELighting.cpp:
* platform/graphics/filters/FESpecularLighting.cpp:
* rendering/svg/RenderSVGResourceLinearGradientInlines.h:
* rendering/svg/RenderSVGResourceMarkerInlines.h:
* rendering/svg/RenderSVGResourceMaskerInlines.h:
* rendering/svg/RenderSVGResourceRadialGradientInlines.h:
* style/ChildChangeInvalidation.cpp:
* workers/service/ServiceWorkerTypes.h:

Source/WebKit:

* GPUProcess/graphics/WebGPU/RemoteRenderPipeline.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (286137 => 286138)


--- trunk/Source/_javascript_Core/ChangeLog	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-11-23 21:05:08 UTC (rev 286138)
@@ -1,3 +1,13 @@
+2021-11-23  Don Olmstead  <[email protected]>
+
+        Non-unified build fixes, mid November 2021 edition
+        https://bugs.webkit.org/show_bug.cgi?id=233450
+
+        Unreviewed non-unified build fixes.
+
+        * heap/IsoHeapCellType.h:
+        * jit/ThunkGenerators.h:
+
 2021-11-22  Geza Lore  <[email protected]>
 
         [JSC] Make sharing of unlinked baseline code possible on JSVALUE32_64

Modified: trunk/Source/_javascript_Core/heap/IsoHeapCellType.h (286137 => 286138)


--- trunk/Source/_javascript_Core/heap/IsoHeapCellType.h	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/_javascript_Core/heap/IsoHeapCellType.h	2021-11-23 21:05:08 UTC (rev 286138)
@@ -26,6 +26,7 @@
 #pragma once
 
 #include "HeapCellType.h"
+#include <wtf/PtrTag.h>
 
 namespace JSC {
 

Modified: trunk/Source/_javascript_Core/jit/ThunkGenerators.h (286137 => 286138)


--- trunk/Source/_javascript_Core/jit/ThunkGenerators.h	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/_javascript_Core/jit/ThunkGenerators.h	2021-11-23 21:05:08 UTC (rev 286138)
@@ -32,6 +32,7 @@
 namespace JSC {
 
 class CallLinkInfo;
+enum class CallMode;
 template<PtrTag> class MacroAssemblerCodeRef;
 class VM;
 

Modified: trunk/Source/WebCore/ChangeLog (286137 => 286138)


--- trunk/Source/WebCore/ChangeLog	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/ChangeLog	2021-11-23 21:05:08 UTC (rev 286138)
@@ -1,3 +1,28 @@
+2021-11-23  Don Olmstead  <[email protected]>
+
+        Non-unified build fixes, mid November 2021 edition
+        https://bugs.webkit.org/show_bug.cgi?id=233450
+
+        Unreviewed non-unified build fixes.
+
+        * Modules/WebGPU/GPUColorWrite.h:
+        * Modules/filesystemaccess/FileSystemFileHandle.cpp:
+        * inspector/WorkerInspectorController.cpp:
+        * layout/integration/LayoutIntegrationBoxTree.cpp:
+        * layout/integration/LayoutIntegrationBoxTree.h:
+        * page/DOMWindow.cpp:
+        * platform/graphics/filters/FEComponentTransfer.cpp:
+        * platform/graphics/filters/FEConvolveMatrix.cpp:
+        * platform/graphics/filters/FEDiffuseLighting.cpp:
+        * platform/graphics/filters/FELighting.cpp:
+        * platform/graphics/filters/FESpecularLighting.cpp:
+        * rendering/svg/RenderSVGResourceLinearGradientInlines.h:
+        * rendering/svg/RenderSVGResourceMarkerInlines.h:
+        * rendering/svg/RenderSVGResourceMaskerInlines.h:
+        * rendering/svg/RenderSVGResourceRadialGradientInlines.h:
+        * style/ChildChangeInvalidation.cpp:
+        * workers/service/ServiceWorkerTypes.h:
+
 2021-11-23  Carlos Garcia Campos  <[email protected]>
 
         CSP: security policy violation event is always using document as target

Modified: trunk/Source/WebCore/Modules/WebGPU/GPUColorWrite.h (286137 => 286138)


--- trunk/Source/WebCore/Modules/WebGPU/GPUColorWrite.h	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/Modules/WebGPU/GPUColorWrite.h	2021-11-23 21:05:08 UTC (rev 286138)
@@ -30,6 +30,7 @@
 #include "GPUIntegralTypes.h"
 #include <cstdint>
 #include <pal/graphics/WebGPU/WebGPUColorWrite.h>
+#include <wtf/RefCounted.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/Modules/filesystemaccess/FileSystemFileHandle.cpp (286137 => 286138)


--- trunk/Source/WebCore/Modules/filesystemaccess/FileSystemFileHandle.cpp	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/Modules/filesystemaccess/FileSystemFileHandle.cpp	2021-11-23 21:05:08 UTC (rev 286138)
@@ -26,9 +26,11 @@
 #include "config.h"
 #include "FileSystemFileHandle.h"
 
+#include "File.h"
 #include "FileSystemStorageConnection.h"
 #include "FileSystemSyncAccessHandle.h"
 #include "JSDOMPromiseDeferred.h"
+#include "JSFile.h"
 #include "JSFileSystemSyncAccessHandle.h"
 #include <wtf/IsoMallocInlines.h>
 

Modified: trunk/Source/WebCore/inspector/WorkerInspectorController.cpp (286137 => 286138)


--- trunk/Source/WebCore/inspector/WorkerInspectorController.cpp	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/inspector/WorkerInspectorController.cpp	2021-11-23 21:05:08 UTC (rev 286138)
@@ -49,6 +49,7 @@
 
 #if ENABLE(SERVICE_WORKER)
 #include "InspectorClient.h"
+#include "InspectorController.h"
 #include "Page.h"
 #include "ServiceWorkerAgent.h"
 #include "ServiceWorkerGlobalScope.h"

Modified: trunk/Source/WebCore/layout/integration/LayoutIntegrationBoxTree.cpp (286137 => 286138)


--- trunk/Source/WebCore/layout/integration/LayoutIntegrationBoxTree.cpp	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/layout/integration/LayoutIntegrationBoxTree.cpp	2021-11-23 21:05:08 UTC (rev 286138)
@@ -39,6 +39,10 @@
 #include "RenderLineBreak.h"
 #include "TextUtil.h"
 
+#if ENABLE(TREE_DEBUGGING)
+#include "LayoutIntegrationLineLayout.h"
+#endif
+
 namespace WebCore {
 namespace LayoutIntegration {
 

Modified: trunk/Source/WebCore/layout/integration/LayoutIntegrationBoxTree.h (286137 => 286138)


--- trunk/Source/WebCore/layout/integration/LayoutIntegrationBoxTree.h	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/layout/integration/LayoutIntegrationBoxTree.h	2021-11-23 21:05:08 UTC (rev 286138)
@@ -39,6 +39,10 @@
 
 namespace LayoutIntegration {
 
+#if ENABLE(TREE_DEBUGGING)
+struct InlineContent;
+#endif
+
 class BoxTree {
 public:
     BoxTree(RenderBlockFlow&);

Modified: trunk/Source/WebCore/page/DOMWindow.cpp (286137 => 286138)


--- trunk/Source/WebCore/page/DOMWindow.cpp	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/page/DOMWindow.cpp	2021-11-23 21:05:08 UTC (rev 286138)
@@ -77,6 +77,7 @@
 #include "JSDOMWindowBase.h"
 #include "JSExecState.h"
 #include "Location.h"
+#include "Logging.h"
 #include "MediaQueryList.h"
 #include "MediaQueryMatcher.h"
 #include "MessageEvent.h"

Modified: trunk/Source/WebCore/platform/graphics/filters/FEComponentTransfer.cpp (286137 => 286138)


--- trunk/Source/WebCore/platform/graphics/filters/FEComponentTransfer.cpp	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/platform/graphics/filters/FEComponentTransfer.cpp	2021-11-23 21:05:08 UTC (rev 286138)
@@ -25,6 +25,7 @@
 #include "FEComponentTransfer.h"
 
 #include "GraphicsContext.h"
+#include "ImageBuffer.h"
 #include "PixelBuffer.h"
 #include <wtf/MathExtras.h>
 #include <wtf/StdLibExtras.h>

Modified: trunk/Source/WebCore/platform/graphics/filters/FEConvolveMatrix.cpp (286137 => 286138)


--- trunk/Source/WebCore/platform/graphics/filters/FEConvolveMatrix.cpp	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/platform/graphics/filters/FEConvolveMatrix.cpp	2021-11-23 21:05:08 UTC (rev 286138)
@@ -24,6 +24,7 @@
 #include "config.h"
 #include "FEConvolveMatrix.h"
 
+#include "ImageBuffer.h"
 #include "PixelBuffer.h"
 #include <wtf/ParallelJobs.h>
 #include <wtf/WorkQueue.h>

Modified: trunk/Source/WebCore/platform/graphics/filters/FEDiffuseLighting.cpp (286137 => 286138)


--- trunk/Source/WebCore/platform/graphics/filters/FEDiffuseLighting.cpp	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/platform/graphics/filters/FEDiffuseLighting.cpp	2021-11-23 21:05:08 UTC (rev 286138)
@@ -22,6 +22,7 @@
 #include "config.h"
 #include "FEDiffuseLighting.h"
 
+#include "ImageBuffer.h"
 #include "LightSource.h"
 #include <wtf/text/TextStream.h>
 

Modified: trunk/Source/WebCore/platform/graphics/filters/FELighting.cpp (286137 => 286138)


--- trunk/Source/WebCore/platform/graphics/filters/FELighting.cpp	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/platform/graphics/filters/FELighting.cpp	2021-11-23 21:05:08 UTC (rev 286138)
@@ -30,6 +30,7 @@
 
 #include "ColorConversion.h"
 #include "FELightingNEON.h"
+#include "ImageBuffer.h"
 #include "PixelBuffer.h"
 #include <wtf/ParallelJobs.h>
 

Modified: trunk/Source/WebCore/platform/graphics/filters/FESpecularLighting.cpp (286137 => 286138)


--- trunk/Source/WebCore/platform/graphics/filters/FESpecularLighting.cpp	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/platform/graphics/filters/FESpecularLighting.cpp	2021-11-23 21:05:08 UTC (rev 286138)
@@ -22,6 +22,7 @@
 #include "config.h"
 #include "FESpecularLighting.h"
 
+#include "ImageBuffer.h"
 #include "LightSource.h"
 #include <wtf/text/TextStream.h>
 

Modified: trunk/Source/WebCore/rendering/svg/RenderSVGResourceLinearGradientInlines.h (286137 => 286138)


--- trunk/Source/WebCore/rendering/svg/RenderSVGResourceLinearGradientInlines.h	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/rendering/svg/RenderSVGResourceLinearGradientInlines.h	2021-11-23 21:05:08 UTC (rev 286138)
@@ -25,8 +25,8 @@
 
 #pragma once
 
-
 #include "RenderSVGResourceLinearGradient.h"
+#include "SVGElementTypeHelpers.h"
 #include "SVGLinearGradientElement.h"
 
 namespace WebCore {

Modified: trunk/Source/WebCore/rendering/svg/RenderSVGResourceMarkerInlines.h (286137 => 286138)


--- trunk/Source/WebCore/rendering/svg/RenderSVGResourceMarkerInlines.h	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/rendering/svg/RenderSVGResourceMarkerInlines.h	2021-11-23 21:05:08 UTC (rev 286138)
@@ -25,8 +25,8 @@
 
 #pragma once
 
-
 #include "RenderSVGResourceMarker.h"
+#include "SVGElementTypeHelpers.h"
 #include "SVGMarkerElement.h"
 
 namespace WebCore {

Modified: trunk/Source/WebCore/rendering/svg/RenderSVGResourceMaskerInlines.h (286137 => 286138)


--- trunk/Source/WebCore/rendering/svg/RenderSVGResourceMaskerInlines.h	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/rendering/svg/RenderSVGResourceMaskerInlines.h	2021-11-23 21:05:08 UTC (rev 286138)
@@ -26,6 +26,7 @@
 #pragma once
 
 #include "RenderSVGResourceMasker.h"
+#include "SVGElementTypeHelpers.h"
 #include "SVGMaskElement.h"
 
 namespace WebCore {

Modified: trunk/Source/WebCore/rendering/svg/RenderSVGResourceRadialGradientInlines.h (286137 => 286138)


--- trunk/Source/WebCore/rendering/svg/RenderSVGResourceRadialGradientInlines.h	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/rendering/svg/RenderSVGResourceRadialGradientInlines.h	2021-11-23 21:05:08 UTC (rev 286138)
@@ -26,6 +26,7 @@
 #pragma once
 
 #include "RenderSVGResourceRadialGradient.h"
+#include "SVGElementTypeHelpers.h"
 #include "SVGRadialGradientElement.h"
 
 namespace WebCore {

Modified: trunk/Source/WebCore/style/ChildChangeInvalidation.cpp (286137 => 286138)


--- trunk/Source/WebCore/style/ChildChangeInvalidation.cpp	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/style/ChildChangeInvalidation.cpp	2021-11-23 21:05:08 UTC (rev 286138)
@@ -26,6 +26,7 @@
 #include "config.h"
 #include "ChildChangeInvalidation.h"
 
+#include "ElementTraversal.h"
 #include "NodeRenderStyle.h"
 #include "ShadowRoot.h"
 #include "SlotAssignment.h"

Modified: trunk/Source/WebCore/workers/service/ServiceWorkerTypes.h (286137 => 286138)


--- trunk/Source/WebCore/workers/service/ServiceWorkerTypes.h	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebCore/workers/service/ServiceWorkerTypes.h	2021-11-23 21:05:08 UTC (rev 286138)
@@ -28,6 +28,7 @@
 #if ENABLE(SERVICE_WORKER)
 
 #include "ProcessIdentifier.h"
+#include "ProcessQualified.h"
 #include "ScriptExecutionContextIdentifier.h"
 #include "ServiceWorkerIdentifier.h"
 #include <variant>

Modified: trunk/Source/WebKit/ChangeLog (286137 => 286138)


--- trunk/Source/WebKit/ChangeLog	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebKit/ChangeLog	2021-11-23 21:05:08 UTC (rev 286138)
@@ -1,3 +1,12 @@
+2021-11-23  Don Olmstead  <[email protected]>
+
+        Non-unified build fixes, mid November 2021 edition
+        https://bugs.webkit.org/show_bug.cgi?id=233450
+
+        Unreviewed non-unified build fixes.
+
+        * GPUProcess/graphics/WebGPU/RemoteRenderPipeline.cpp:
+
 2021-11-23  Alexander Mikhaylenko  <[email protected]>
 
         [GTK] Effective appearance doesn't update on the old process after PSON

Modified: trunk/Source/WebKit/GPUProcess/graphics/WebGPU/RemoteRenderPipeline.cpp (286137 => 286138)


--- trunk/Source/WebKit/GPUProcess/graphics/WebGPU/RemoteRenderPipeline.cpp	2021-11-23 19:44:42 UTC (rev 286137)
+++ trunk/Source/WebKit/GPUProcess/graphics/WebGPU/RemoteRenderPipeline.cpp	2021-11-23 21:05:08 UTC (rev 286138)
@@ -31,6 +31,7 @@
 #include "RemoteBindGroupLayout.h"
 #include "WebGPUObjectHeap.h"
 #include "WebGPUObjectRegistry.h"
+#include <pal/graphics/WebGPU/WebGPUBindGroupLayout.h>
 #include <pal/graphics/WebGPU/WebGPURenderPipeline.h>
 
 namespace WebKit {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to