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

Changeset 286556 in webkit


Ignore:
Timestamp:
Dec 6, 2021, 11:45:01 AM (5 years ago)
Author:
Wenson Hsieh
Message:

Unreviewed, add some missing #includes in WebCore

Add several missing #include-s, which currently aren't causing any issues due to unified sources (but will
once I introduce several new source files in WebCore/Modules in a future patch).

  • Modules/web-locks/WebLockRegistry.cpp:
  • page/Page.cpp:
  • page/PageConfiguration.h:
Location:
trunk/Source/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r286555 r286556  
     12021-12-06  Wenson Hsieh  <wenson_hsieh@apple.com>
     2
     3        Unreviewed, add some missing #includes in WebCore
     4
     5        Add several missing `#include`-s, which currently aren't causing any issues due to unified sources (but will
     6        once I introduce several new source files in `WebCore/Modules` in a future patch).
     7
     8        * Modules/web-locks/WebLockRegistry.cpp:
     9        * page/Page.cpp:
     10        * page/PageConfiguration.h:
     11
    1122021-12-06  Antoine Quint  <graouts@webkit.org>
    213
  • trunk/Source/WebCore/Modules/web-locks/WebLockRegistry.cpp

    r286455 r286556  
    2727
    2828#include "Exception.h"
     29#include "WebLockManager.h"
    2930#include "WebLockManagerSnapshot.h"
    3031#include <wtf/CompletionHandler.h>
  • trunk/Source/WebCore/page/Page.cpp

    r286455 r286556  
    2727#include "ApplicationCacheStorage.h"
    2828#include "AuthenticatorCoordinator.h"
     29#include "AuthenticatorCoordinatorClient.h"
    2930#include "BackForwardCache.h"
    3031#include "BackForwardClient.h"
     
    139140#include "SocketProvider.h"
    140141#include "SpeechRecognitionProvider.h"
     142#include "SpeechSynthesisClient.h"
    141143#include "StorageArea.h"
    142144#include "StorageNamespace.h"
     
    160162#include "VoidCallback.h"
    161163#include "WebCoreJSClientData.h"
     164#include "WebLockRegistry.h"
    162165#include "WheelEventDeltaFilter.h"
    163166#include "WheelEventTestMonitor.h"
  • trunk/Source/WebCore/page/PageConfiguration.h

    r286455 r286556  
    3737#if ENABLE(APPLICATION_MANIFEST)
    3838#include "ApplicationManifest.h"
     39#endif
     40
     41#if ENABLE(DEVICE_ORIENTATION)
     42#include "DeviceOrientationUpdateProvider.h"
    3943#endif
    4044
Note: See TracChangeset for help on using the changeset viewer.