Title: [283482] trunk/Source
Revision
283482
Author
[email protected]
Date
2021-10-03 16:00:17 -0700 (Sun, 03 Oct 2021)

Log Message

Non-unified build fixes, early October 2021 edition
https://bugs.webkit.org/show_bug.cgi?id=231143

Unreviewed non-unified build fixes.


Source/_javascript_Core:

* jit/BaselineJITCode.cpp:

Source/WebCore:

* Modules/filesystemaccess/FileSystemHandle.cpp:
* Modules/push-api/PushMessageData.h:
* html/track/InbandTextTrack.cpp:
* inspector/agents/InspectorCanvasAgent.h:
* loader/CrossOriginOpenerPolicy.cpp:
* rendering/LegacyLineLayout.cpp:
* rendering/RenderBlockFlow.cpp:

Source/WebKit:

* NetworkProcess/NetworkResourceLoadParameters.h:
* UIProcess/API/C/WKContext.cpp:
(WKContextTerminateGPUProcess):
* WebProcess/GPU/media/MediaPlayerPrivateRemote.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (283481 => 283482)


--- trunk/Source/_javascript_Core/ChangeLog	2021-10-03 21:57:12 UTC (rev 283481)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-10-03 23:00:17 UTC (rev 283482)
@@ -1,3 +1,12 @@
+2021-10-03  Don Olmstead  <[email protected]>
+
+        Non-unified build fixes, early October 2021 edition
+        https://bugs.webkit.org/show_bug.cgi?id=231143
+
+        Unreviewed non-unified build fixes.
+
+        * jit/BaselineJITCode.cpp:
+
 2021-10-03  Lauro Moura  <[email protected]>
 
         Remove control reaches end of non-void function warning

Modified: trunk/Source/_javascript_Core/jit/BaselineJITCode.cpp (283481 => 283482)


--- trunk/Source/_javascript_Core/jit/BaselineJITCode.cpp	2021-10-03 21:57:12 UTC (rev 283481)
+++ trunk/Source/_javascript_Core/jit/BaselineJITCode.cpp	2021-10-03 23:00:17 UTC (rev 283482)
@@ -30,6 +30,7 @@
 
 #include "JITMathIC.h"
 #include "JumpTable.h"
+#include "PCToCodeOriginMap.h"
 #include "StructureStubInfo.h"
 
 namespace JSC {

Modified: trunk/Source/WebCore/ChangeLog (283481 => 283482)


--- trunk/Source/WebCore/ChangeLog	2021-10-03 21:57:12 UTC (rev 283481)
+++ trunk/Source/WebCore/ChangeLog	2021-10-03 23:00:17 UTC (rev 283482)
@@ -1,3 +1,18 @@
+2021-10-03  Don Olmstead  <[email protected]>
+
+        Non-unified build fixes, early October 2021 edition
+        https://bugs.webkit.org/show_bug.cgi?id=231143
+
+        Unreviewed non-unified build fixes.
+
+        * Modules/filesystemaccess/FileSystemHandle.cpp:
+        * Modules/push-api/PushMessageData.h:
+        * html/track/InbandTextTrack.cpp:
+        * inspector/agents/InspectorCanvasAgent.h:
+        * loader/CrossOriginOpenerPolicy.cpp:
+        * rendering/LegacyLineLayout.cpp:
+        * rendering/RenderBlockFlow.cpp:
+
 2021-10-03  Alan Bujtas  <[email protected]>
 
         Incorrect preferred width computation when trimmable leading whitespace is present

Modified: trunk/Source/WebCore/Modules/filesystemaccess/FileSystemHandle.cpp (283481 => 283482)


--- trunk/Source/WebCore/Modules/filesystemaccess/FileSystemHandle.cpp	2021-10-03 21:57:12 UTC (rev 283481)
+++ trunk/Source/WebCore/Modules/filesystemaccess/FileSystemHandle.cpp	2021-10-03 23:00:17 UTC (rev 283482)
@@ -26,6 +26,7 @@
 #include "config.h"
 #include "FileSystemHandle.h"
 
+#include "FileSystemStorageConnection.h"
 #include "JSDOMPromiseDeferred.h"
 #include <wtf/IsoMallocInlines.h>
 

Modified: trunk/Source/WebCore/Modules/push-api/PushMessageData.h (283481 => 283482)


--- trunk/Source/WebCore/Modules/push-api/PushMessageData.h	2021-10-03 21:57:12 UTC (rev 283481)
+++ trunk/Source/WebCore/Modules/push-api/PushMessageData.h	2021-10-03 23:00:17 UTC (rev 283482)
@@ -30,6 +30,7 @@
 #include "ExceptionOr.h"
 #include <_javascript_Core/ArrayBuffer.h>
 #include <_javascript_Core/JSCJSValue.h>
+#include <wtf/IsoMalloc.h>
 #include <wtf/Vector.h>
 
 namespace WebCore {

Modified: trunk/Source/WebCore/html/track/InbandTextTrack.cpp (283481 => 283482)


--- trunk/Source/WebCore/html/track/InbandTextTrack.cpp	2021-10-03 21:57:12 UTC (rev 283481)
+++ trunk/Source/WebCore/html/track/InbandTextTrack.cpp	2021-10-03 23:00:17 UTC (rev 283482)
@@ -32,6 +32,7 @@
 #include "InbandGenericTextTrack.h"
 #include "InbandTextTrackPrivate.h"
 #include "InbandWebVTTTextTrack.h"
+#include "TextTrackClient.h"
 #include <wtf/IsoMallocInlines.h>
 
 namespace WebCore {

Modified: trunk/Source/WebCore/inspector/agents/InspectorCanvasAgent.h (283481 => 283482)


--- trunk/Source/WebCore/inspector/agents/InspectorCanvasAgent.h	2021-10-03 21:57:12 UTC (rev 283481)
+++ trunk/Source/WebCore/inspector/agents/InspectorCanvasAgent.h	2021-10-03 23:00:17 UTC (rev 283482)
@@ -44,6 +44,8 @@
 namespace WebCore {
 
 class CanvasRenderingContext;
+class Frame;
+
 #if ENABLE(WEBGL)
 class InspectorShaderProgram;
 class WebGLProgram;

Modified: trunk/Source/WebCore/loader/CrossOriginOpenerPolicy.cpp (283481 => 283482)


--- trunk/Source/WebCore/loader/CrossOriginOpenerPolicy.cpp	2021-10-03 21:57:12 UTC (rev 283481)
+++ trunk/Source/WebCore/loader/CrossOriginOpenerPolicy.cpp	2021-10-03 23:00:17 UTC (rev 283482)
@@ -37,6 +37,7 @@
 #include "PingLoader.h"
 #include "ResourceResponse.h"
 #include "ScriptExecutionContext.h"
+#include "SecurityPolicy.h"
 #include <wtf/JSONValues.h>
 
 namespace WebCore {

Modified: trunk/Source/WebCore/rendering/LegacyLineLayout.cpp (283481 => 283482)


--- trunk/Source/WebCore/rendering/LegacyLineLayout.cpp	2021-10-03 21:57:12 UTC (rev 283481)
+++ trunk/Source/WebCore/rendering/LegacyLineLayout.cpp	2021-10-03 23:00:17 UTC (rev 283482)
@@ -31,6 +31,7 @@
 #include "FloatingObjects.h"
 #include "HTMLParserIdioms.h"
 #include "InlineIteratorBox.h"
+#include "InlineIteratorTextBox.h"
 #include "InlineTextBoxStyle.h"
 #include "InlineWalker.h"
 #include "LegacyInlineElementBox.h"

Modified: trunk/Source/WebCore/rendering/RenderBlockFlow.cpp (283481 => 283482)


--- trunk/Source/WebCore/rendering/RenderBlockFlow.cpp	2021-10-03 21:57:12 UTC (rev 283481)
+++ trunk/Source/WebCore/rendering/RenderBlockFlow.cpp	2021-10-03 23:00:17 UTC (rev 283482)
@@ -35,6 +35,7 @@
 #include "HitTestLocation.h"
 #include "InlineIteratorBox.h"
 #include "InlineIteratorLine.h"
+#include "InlineWalker.h"
 #include "LayoutIntegrationLineLayout.h"
 #include "LayoutRepainter.h"
 #include "LegacyInlineTextBox.h"

Modified: trunk/Source/WebKit/ChangeLog (283481 => 283482)


--- trunk/Source/WebKit/ChangeLog	2021-10-03 21:57:12 UTC (rev 283481)
+++ trunk/Source/WebKit/ChangeLog	2021-10-03 23:00:17 UTC (rev 283482)
@@ -1,3 +1,15 @@
+2021-10-03  Don Olmstead  <[email protected]>
+
+        Non-unified build fixes, early October 2021 edition
+        https://bugs.webkit.org/show_bug.cgi?id=231143
+
+        Unreviewed non-unified build fixes.
+
+        * NetworkProcess/NetworkResourceLoadParameters.h:
+        * UIProcess/API/C/WKContext.cpp:
+        (WKContextTerminateGPUProcess):
+        * WebProcess/GPU/media/MediaPlayerPrivateRemote.cpp:
+
 2021-10-03  Basuke Suzuki  <[email protected]>
 
         [PlayStation] Pass logging channel parameter to WebProcess from environment variable

Modified: trunk/Source/WebKit/NetworkProcess/NetworkResourceLoadParameters.h (283481 => 283482)


--- trunk/Source/WebKit/NetworkProcess/NetworkResourceLoadParameters.h	2021-10-03 21:57:12 UTC (rev 283481)
+++ trunk/Source/WebKit/NetworkProcess/NetworkResourceLoadParameters.h	2021-10-03 23:00:17 UTC (rev 283482)
@@ -35,6 +35,7 @@
 #include <WebCore/FetchOptions.h>
 #include <WebCore/NavigationRequester.h>
 #include <WebCore/ResourceLoaderIdentifier.h>
+#include <WebCore/SecurityContext.h>
 #include <wtf/Seconds.h>
 
 namespace IPC {

Modified: trunk/Source/WebKit/UIProcess/API/C/WKContext.cpp (283481 => 283482)


--- trunk/Source/WebKit/UIProcess/API/C/WKContext.cpp	2021-10-03 21:57:12 UTC (rev 283481)
+++ trunk/Source/WebKit/UIProcess/API/C/WKContext.cpp	2021-10-03 23:00:17 UTC (rev 283482)
@@ -549,7 +549,7 @@
 void WKContextTerminateGPUProcess(WKContextRef)
 {
 #if ENABLE(GPU_PROCESS)
-    if (auto* gpuProcess = GPUProcessProxy::singletonIfCreated())
+    if (auto* gpuProcess = WebKit::GPUProcessProxy::singletonIfCreated())
         gpuProcess->terminateForTesting();
 #endif
 }

Modified: trunk/Source/WebKit/WebProcess/GPU/media/MediaPlayerPrivateRemote.cpp (283481 => 283482)


--- trunk/Source/WebKit/WebProcess/GPU/media/MediaPlayerPrivateRemote.cpp	2021-10-03 21:57:12 UTC (rev 283481)
+++ trunk/Source/WebKit/WebProcess/GPU/media/MediaPlayerPrivateRemote.cpp	2021-10-03 23:00:17 UTC (rev 283482)
@@ -46,6 +46,7 @@
 #include <WebCore/MediaPlayer.h>
 #include <WebCore/NotImplemented.h>
 #include <WebCore/PlatformLayer.h>
+#include <WebCore/PlatformScreen.h>
 #include <WebCore/PlatformTimeRanges.h>
 #include <WebCore/ResourceError.h>
 #include <WebCore/RuntimeEnabledFeatures.h>
@@ -1313,7 +1314,7 @@
     connection().send(Messages::RemoteMediaPlayerProxy::ApplicationDidBecomeActive(), m_id);
 }
 
-void MediaPlayerPrivateRemote::setPreferredDynamicRangeMode(DynamicRangeMode mode)
+void MediaPlayerPrivateRemote::setPreferredDynamicRangeMode(WebCore::DynamicRangeMode mode)
 {
     connection().send(Messages::RemoteMediaPlayerProxy::SetPreferredDynamicRangeMode(mode), m_id);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to