Title: [285715] trunk/Source
Revision
285715
Author
[email protected]
Date
2021-11-12 06:25:04 -0800 (Fri, 12 Nov 2021)

Log Message

Non-unified build fixes, early November 2021 edition, bis x2

Unreviewed non-unified build fixes.

Source/_javascript_Core:

* jit/JITWorklist.cpp: Add missing DeferGCInlines.h header.

Source/WebCore:

* platform/gamepad/GamepadConstants.h: Use wtf/Forward.h instead of manually
forward-declaring the WTF::String type in the file.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (285714 => 285715)


--- trunk/Source/_javascript_Core/ChangeLog	2021-11-12 12:48:43 UTC (rev 285714)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-11-12 14:25:04 UTC (rev 285715)
@@ -1,3 +1,11 @@
+2021-11-12  Adrian Perez de Castro  <[email protected]>
+
+        Non-unified build fixes, early November 2021 edition, bis x2
+
+        Unreviewed non-unified build fixes.
+
+        * jit/JITWorklist.cpp: Add missing DeferGCInlines.h header.
+
 2021-11-11  Mark Lam  <[email protected]>
 
         Add VM::writeBarrier() and VM::mutatorFence().

Modified: trunk/Source/_javascript_Core/jit/JITWorklist.cpp (285714 => 285715)


--- trunk/Source/_javascript_Core/jit/JITWorklist.cpp	2021-11-12 12:48:43 UTC (rev 285714)
+++ trunk/Source/_javascript_Core/jit/JITWorklist.cpp	2021-11-12 14:25:04 UTC (rev 285715)
@@ -28,6 +28,7 @@
 
 #if ENABLE(JIT)
 
+#include "DeferGCInlines.h"
 #include "HeapInlines.h"
 #include "JITSafepoint.h"
 #include "JITWorklistThread.h"

Modified: trunk/Source/WebCore/ChangeLog (285714 => 285715)


--- trunk/Source/WebCore/ChangeLog	2021-11-12 12:48:43 UTC (rev 285714)
+++ trunk/Source/WebCore/ChangeLog	2021-11-12 14:25:04 UTC (rev 285715)
@@ -1,3 +1,12 @@
+2021-11-12  Adrian Perez de Castro  <[email protected]>
+
+        Non-unified build fixes, early November 2021 edition, bis x2
+
+        Unreviewed non-unified build fixes.
+
+        * platform/gamepad/GamepadConstants.h: Use wtf/Forward.h instead of manually
+        forward-declaring the WTF::String type in the file.
+
 2021-11-12  Tim Nguyen  <[email protected]>
 
         Re-use isCSSWideKeyword in CSSCustomPropertyValue::createWithID

Modified: trunk/Source/WebCore/platform/gamepad/GamepadConstants.h (285714 => 285715)


--- trunk/Source/WebCore/platform/gamepad/GamepadConstants.h	2021-11-12 12:48:43 UTC (rev 285714)
+++ trunk/Source/WebCore/platform/gamepad/GamepadConstants.h	2021-11-12 14:25:04 UTC (rev 285715)
@@ -27,9 +27,7 @@
 
 #if ENABLE(GAMEPAD)
 
-namespace WTF {
-class String;
-};
+#include <wtf/Forward.h>
 
 namespace WebCore {
 
@@ -61,9 +59,9 @@
 extern const size_t numberOfStandardGamepadButtonsWithHomeButton;
 extern const GamepadButtonRole maximumGamepadButton;
 
-const WTF::String& standardGamepadMappingString();
+const String& standardGamepadMappingString();
 #if ENABLE(WEBXR)
-const WTF::String& xrStandardGamepadMappingString();
+const String& xrStandardGamepadMappingString();
 #endif
 
 } // namespace WebCore
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to