Title: [278162] trunk/Source
Revision
278162
Author
ape...@igalia.com
Date
2021-05-27 05:30:13 -0700 (Thu, 27 May 2021)

Log Message

Non-unified build fixes, late May 2021 edition
https://bugs.webkit.org/show_bug.cgi?id=226322

Unreviewed non-unified build fixes.

Source/_javascript_Core:


* jit/JITPlan.cpp: Add missing HeapInlines.h and VMInlines.h headers.
* jit/JITWorklist.cpp: Add missing HeapInlines.h and SlotVisitorInlines.h headers,
remove SlotVisitor.h which is now unneeded.
* jit/JITWorklistThread.cpp: Add missing HeapInlines.h header.

Source/WebCore:

No new tests needed.


* css/CSSGridIntegerRepeatValue.cpp: Add missing wtf/text/StringConcatenateNumbers.h
header.
* css/CSSTimingFunctionValue.cpp: Ditto.
* layout/formattingContexts/flex/FlexFormattingContext.h: Add missing FormattingQuirks.h
header, remove now unneeded FormattingContext.h header.
* loader/PrivateClickMeasurement.cpp: Add missing wtf/text/StringConcatenateNumbers.h
header.
* platform/graphics/cairo/GraphicsContextCairo.cpp: Add missing Gradient.h header.
* platform/graphics/filters/FEMorphology.cpp: Add missing ColorTypes.h header.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (278161 => 278162)


--- trunk/Source/_javascript_Core/ChangeLog	2021-05-27 12:22:28 UTC (rev 278161)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-05-27 12:30:13 UTC (rev 278162)
@@ -1,3 +1,15 @@
+2021-05-27  Adrian Perez de Castro  <ape...@igalia.com>
+
+        Non-unified build fixes, late May 2021 edition
+        https://bugs.webkit.org/show_bug.cgi?id=226322
+
+        Unreviewed non-unified build fixes.
+
+        * jit/JITPlan.cpp: Add missing HeapInlines.h and VMInlines.h headers.
+        * jit/JITWorklist.cpp: Add missing HeapInlines.h and SlotVisitorInlines.h headers,
+        remove SlotVisitor.h which is now unneeded.
+        * jit/JITWorklistThread.cpp: Add missing HeapInlines.h header.
+
 2021-05-27  Daniel Kolesa  <dkol...@igalia.com>
 
         [JSC] Fix crash on 32-bit big endian systems.

Modified: trunk/Source/_javascript_Core/jit/JITPlan.cpp (278161 => 278162)


--- trunk/Source/_javascript_Core/jit/JITPlan.cpp	2021-05-27 12:22:28 UTC (rev 278161)
+++ trunk/Source/_javascript_Core/jit/JITPlan.cpp	2021-05-27 12:30:13 UTC (rev 278162)
@@ -30,6 +30,8 @@
 
 #include "AbstractSlotVisitor.h"
 #include "CodeBlock.h"
+#include "HeapInlines.h"
+#include "VMInlines.h"
 #include <wtf/CompilationThread.h>
 
 namespace JSC {

Modified: trunk/Source/_javascript_Core/jit/JITWorklist.cpp (278161 => 278162)


--- trunk/Source/_javascript_Core/jit/JITWorklist.cpp	2021-05-27 12:22:28 UTC (rev 278161)
+++ trunk/Source/_javascript_Core/jit/JITWorklist.cpp	2021-05-27 12:30:13 UTC (rev 278162)
@@ -28,9 +28,10 @@
 
 #if ENABLE(JIT)
 
+#include "HeapInlines.h"
 #include "JITSafepoint.h"
 #include "JITWorklistThread.h"
-#include "SlotVisitor.h"
+#include "SlotVisitorInlines.h"
 #include "VMInlines.h"
 #include <wtf/CompilationThread.h>
 

Modified: trunk/Source/_javascript_Core/jit/JITWorklistThread.cpp (278161 => 278162)


--- trunk/Source/_javascript_Core/jit/JITWorklistThread.cpp	2021-05-27 12:22:28 UTC (rev 278161)
+++ trunk/Source/_javascript_Core/jit/JITWorklistThread.cpp	2021-05-27 12:30:13 UTC (rev 278162)
@@ -28,6 +28,7 @@
 
 #if ENABLE(JIT)
 
+#include "HeapInlines.h"
 #include "JITWorklist.h"
 #include "VM.h"
 

Modified: trunk/Source/WebCore/ChangeLog (278161 => 278162)


--- trunk/Source/WebCore/ChangeLog	2021-05-27 12:22:28 UTC (rev 278161)
+++ trunk/Source/WebCore/ChangeLog	2021-05-27 12:30:13 UTC (rev 278162)
@@ -1,3 +1,22 @@
+2021-05-27  Adrian Perez de Castro  <ape...@igalia.com>
+
+        Non-unified build fixes, late May 2021 edition
+        https://bugs.webkit.org/show_bug.cgi?id=226322
+
+        Unreviewed non-unified build fixes.
+
+        No new tests needed.
+
+        * css/CSSGridIntegerRepeatValue.cpp: Add missing wtf/text/StringConcatenateNumbers.h
+        header.
+        * css/CSSTimingFunctionValue.cpp: Ditto.
+        * layout/formattingContexts/flex/FlexFormattingContext.h: Add missing FormattingQuirks.h
+        header, remove now unneeded FormattingContext.h header.
+        * loader/PrivateClickMeasurement.cpp: Add missing wtf/text/StringConcatenateNumbers.h
+        header.
+        * platform/graphics/cairo/GraphicsContextCairo.cpp: Add missing Gradient.h header.
+        * platform/graphics/filters/FEMorphology.cpp: Add missing ColorTypes.h header.
+
 2021-05-27  Youenn Fablet  <you...@apple.com>
 
         Support H264 profiles in MediaRecorder

Modified: trunk/Source/WebCore/css/CSSGridIntegerRepeatValue.cpp (278161 => 278162)


--- trunk/Source/WebCore/css/CSSGridIntegerRepeatValue.cpp	2021-05-27 12:22:28 UTC (rev 278161)
+++ trunk/Source/WebCore/css/CSSGridIntegerRepeatValue.cpp	2021-05-27 12:30:13 UTC (rev 278162)
@@ -30,6 +30,7 @@
 
 #include "config.h"
 #include "CSSGridIntegerRepeatValue.h"
+#include <wtf/text/StringConcatenateNumbers.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/css/CSSTimingFunctionValue.cpp (278161 => 278162)


--- trunk/Source/WebCore/css/CSSTimingFunctionValue.cpp	2021-05-27 12:22:28 UTC (rev 278161)
+++ trunk/Source/WebCore/css/CSSTimingFunctionValue.cpp	2021-05-27 12:30:13 UTC (rev 278162)
@@ -25,6 +25,7 @@
 
 #include "config.h"
 #include "CSSTimingFunctionValue.h"
+#include <wtf/text/StringConcatenateNumbers.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/layout/formattingContexts/flex/FlexFormattingContext.h (278161 => 278162)


--- trunk/Source/WebCore/layout/formattingContexts/flex/FlexFormattingContext.h	2021-05-27 12:22:28 UTC (rev 278161)
+++ trunk/Source/WebCore/layout/formattingContexts/flex/FlexFormattingContext.h	2021-05-27 12:30:13 UTC (rev 278162)
@@ -29,7 +29,7 @@
 
 #include "FlexFormattingGeometry.h"
 #include "FlexFormattingState.h"
-#include "FormattingContext.h"
+#include "FormattingQuirks.h"
 #include <wtf/IsoMalloc.h>
 
 namespace WebCore {

Modified: trunk/Source/WebCore/loader/PrivateClickMeasurement.cpp (278161 => 278162)


--- trunk/Source/WebCore/loader/PrivateClickMeasurement.cpp	2021-05-27 12:22:28 UTC (rev 278161)
+++ trunk/Source/WebCore/loader/PrivateClickMeasurement.cpp	2021-05-27 12:30:13 UTC (rev 278162)
@@ -31,6 +31,7 @@
 #include <wtf/Expected.h>
 #include <wtf/RandomNumber.h>
 #include <wtf/URL.h>
+#include <wtf/text/StringConcatenateNumbers.h>
 #include <wtf/text/StringToIntegerConversion.h>
 #include <wtf/text/StringView.h>
 

Modified: trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp (278161 => 278162)


--- trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp	2021-05-27 12:22:28 UTC (rev 278161)
+++ trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp	2021-05-27 12:30:13 UTC (rev 278162)
@@ -39,6 +39,7 @@
 #include "CairoOperations.h"
 #include "FloatRect.h"
 #include "FloatRoundedRect.h"
+#include "Gradient.h"
 #include "GraphicsContextPlatformPrivateCairo.h"
 #include "ImageBuffer.h"
 #include "IntRect.h"

Modified: trunk/Source/WebCore/platform/graphics/filters/FEMorphology.cpp (278161 => 278162)


--- trunk/Source/WebCore/platform/graphics/filters/FEMorphology.cpp	2021-05-27 12:22:28 UTC (rev 278161)
+++ trunk/Source/WebCore/platform/graphics/filters/FEMorphology.cpp	2021-05-27 12:30:13 UTC (rev 278162)
@@ -26,6 +26,7 @@
 #include "FEMorphology.h"
 
 #include "ColorComponents.h"
+#include "ColorTypes.h"
 #include "Filter.h"
 #include "PixelBuffer.h"
 #include <wtf/ParallelJobs.h>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to