Title: [286556] trunk/Source/WebCore
- Revision
- 286556
- Author
- wenson_hs...@apple.com
- Date
- 2021-12-06 11:45:01 -0800 (Mon, 06 Dec 2021)
Log 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:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (286555 => 286556)
--- trunk/Source/WebCore/ChangeLog 2021-12-06 19:30:57 UTC (rev 286555)
+++ trunk/Source/WebCore/ChangeLog 2021-12-06 19:45:01 UTC (rev 286556)
@@ -1,3 +1,14 @@
+2021-12-06 Wenson Hsieh <wenson_hs...@apple.com>
+
+ 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:
+
2021-12-06 Antoine Quint <grao...@webkit.org>
[Web Animations] Add a way to run scripted animations
Modified: trunk/Source/WebCore/Modules/web-locks/WebLockRegistry.cpp (286555 => 286556)
--- trunk/Source/WebCore/Modules/web-locks/WebLockRegistry.cpp 2021-12-06 19:30:57 UTC (rev 286555)
+++ trunk/Source/WebCore/Modules/web-locks/WebLockRegistry.cpp 2021-12-06 19:45:01 UTC (rev 286556)
@@ -26,6 +26,7 @@
#include "WebLockRegistry.h"
#include "Exception.h"
+#include "WebLockManager.h"
#include "WebLockManagerSnapshot.h"
#include <wtf/CompletionHandler.h>
#include <wtf/NeverDestroyed.h>
Modified: trunk/Source/WebCore/page/Page.cpp (286555 => 286556)
--- trunk/Source/WebCore/page/Page.cpp 2021-12-06 19:30:57 UTC (rev 286555)
+++ trunk/Source/WebCore/page/Page.cpp 2021-12-06 19:45:01 UTC (rev 286556)
@@ -26,6 +26,7 @@
#include "AppHighlightStorage.h"
#include "ApplicationCacheStorage.h"
#include "AuthenticatorCoordinator.h"
+#include "AuthenticatorCoordinatorClient.h"
#include "BackForwardCache.h"
#include "BackForwardClient.h"
#include "BackForwardController.h"
@@ -138,6 +139,7 @@
#include "SharedBuffer.h"
#include "SocketProvider.h"
#include "SpeechRecognitionProvider.h"
+#include "SpeechSynthesisClient.h"
#include "StorageArea.h"
#include "StorageNamespace.h"
#include "StorageNamespaceProvider.h"
@@ -159,6 +161,7 @@
#include "VisitedLinkStore.h"
#include "VoidCallback.h"
#include "WebCoreJSClientData.h"
+#include "WebLockRegistry.h"
#include "WheelEventDeltaFilter.h"
#include "WheelEventTestMonitor.h"
#include "Widget.h"
Modified: trunk/Source/WebCore/page/PageConfiguration.h (286555 => 286556)
--- trunk/Source/WebCore/page/PageConfiguration.h 2021-12-06 19:30:57 UTC (rev 286555)
+++ trunk/Source/WebCore/page/PageConfiguration.h 2021-12-06 19:45:01 UTC (rev 286556)
@@ -38,6 +38,10 @@
#include "ApplicationManifest.h"
#endif
+#if ENABLE(DEVICE_ORIENTATION)
+#include "DeviceOrientationUpdateProvider.h"
+#endif
+
namespace WebCore {
class AlternativeTextClient;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes