Changeset 285715 in webkit
- Timestamp:
- Nov 12, 2021, 6:25:04 AM (5 years ago)
- Location:
- trunk/Source
- Files:
-
- 4 edited
-
JavaScriptCore/ChangeLog (modified) (1 diff)
-
JavaScriptCore/jit/JITWorklist.cpp (modified) (1 diff)
-
WebCore/ChangeLog (modified) (1 diff)
-
WebCore/platform/gamepad/GamepadConstants.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r285687 r285715 1 2021-11-12 Adrian Perez de Castro <aperez@igalia.com> 2 3 Non-unified build fixes, early November 2021 edition, bis x2 4 5 Unreviewed non-unified build fixes. 6 7 * jit/JITWorklist.cpp: Add missing DeferGCInlines.h header. 8 1 9 2021-11-11 Mark Lam <mark.lam@apple.com> 2 10 -
trunk/Source/JavaScriptCore/jit/JITWorklist.cpp
r285636 r285715 29 29 #if ENABLE(JIT) 30 30 31 #include "DeferGCInlines.h" 31 32 #include "HeapInlines.h" 32 33 #include "JITSafepoint.h" -
trunk/Source/WebCore/ChangeLog
r285714 r285715 1 2021-11-12 Adrian Perez de Castro <aperez@igalia.com> 2 3 Non-unified build fixes, early November 2021 edition, bis x2 4 5 Unreviewed non-unified build fixes. 6 7 * platform/gamepad/GamepadConstants.h: Use wtf/Forward.h instead of manually 8 forward-declaring the WTF::String type in the file. 9 1 10 2021-11-12 Tim Nguyen <ntim@apple.com> 2 11 -
trunk/Source/WebCore/platform/gamepad/GamepadConstants.h
r285654 r285715 28 28 #if ENABLE(GAMEPAD) 29 29 30 namespace WTF { 31 class String; 32 }; 30 #include <wtf/Forward.h> 33 31 34 32 namespace WebCore { … … 62 60 extern const GamepadButtonRole maximumGamepadButton; 63 61 64 const WTF::String& standardGamepadMappingString();62 const String& standardGamepadMappingString(); 65 63 #if ENABLE(WEBXR) 66 const WTF::String& xrStandardGamepadMappingString();64 const String& xrStandardGamepadMappingString(); 67 65 #endif 68 66
Note:
See TracChangeset
for help on using the changeset viewer.