⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 285715 in webkit


Ignore:
Timestamp:
Nov 12, 2021, 6:25:04 AM (5 years ago)
Author:
Adrian Perez de Castro
Message:

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

Unreviewed non-unified build fixes.

Source/JavaScriptCore:

  • 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.

Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r285687 r285715  
     12021-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
    192021-11-11  Mark Lam  <mark.lam@apple.com>
    210
  • trunk/Source/JavaScriptCore/jit/JITWorklist.cpp

    r285636 r285715  
    2929#if ENABLE(JIT)
    3030
     31#include "DeferGCInlines.h"
    3132#include "HeapInlines.h"
    3233#include "JITSafepoint.h"
  • trunk/Source/WebCore/ChangeLog

    r285714 r285715  
     12021-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
    1102021-11-12  Tim Nguyen  <ntim@apple.com>
    211
  • trunk/Source/WebCore/platform/gamepad/GamepadConstants.h

    r285654 r285715  
    2828#if ENABLE(GAMEPAD)
    2929
    30 namespace WTF {
    31 class String;
    32 };
     30#include <wtf/Forward.h>
    3331
    3432namespace WebCore {
     
    6260extern const GamepadButtonRole maximumGamepadButton;
    6361
    64 const WTF::String& standardGamepadMappingString();
     62const String& standardGamepadMappingString();
    6563#if ENABLE(WEBXR)
    66 const WTF::String& xrStandardGamepadMappingString();
     64const String& xrStandardGamepadMappingString();
    6765#endif
    6866
Note: See TracChangeset for help on using the changeset viewer.