Title: [284516] trunk/Source
Revision
284516
Author
don.olmst...@sony.com
Date
2021-10-19 20:25:35 -0700 (Tue, 19 Oct 2021)

Log Message

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

Unreviewed non-unified build fixes.


Source/WebCore:

* animation/KeyframeEffectStack.cpp:
* bindings/js/JSDOMWindowBase.cpp:
* dom/ActiveDOMObject.cpp:
* html/DOMFormData.cpp:
* html/HTMLDialogElement.cpp:
* html/HTMLOutputElement.cpp:
* html/ResetInputType.cpp:
* page/DragController.cpp:
* page/EventHandler.cpp:
* rendering/updating/RenderTreeBuilderFirstLetter.cpp:

Source/WebKit:

* NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementConnection.cpp:
* WebProcess/GPU/graphics/RemoteDisplayListRecorderProxy.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (284515 => 284516)


--- trunk/Source/WebCore/ChangeLog	2021-10-20 03:03:58 UTC (rev 284515)
+++ trunk/Source/WebCore/ChangeLog	2021-10-20 03:25:35 UTC (rev 284516)
@@ -1,3 +1,21 @@
+2021-10-19  Don Olmstead  <don.olmst...@sony.com>
+
+        Non-unified build fixes, mid October 2021 edition
+        https://bugs.webkit.org/show_bug.cgi?id=231915
+
+        Unreviewed non-unified build fixes.
+
+        * animation/KeyframeEffectStack.cpp:
+        * bindings/js/JSDOMWindowBase.cpp:
+        * dom/ActiveDOMObject.cpp:
+        * html/DOMFormData.cpp:
+        * html/HTMLDialogElement.cpp:
+        * html/HTMLOutputElement.cpp:
+        * html/ResetInputType.cpp:
+        * page/DragController.cpp:
+        * page/EventHandler.cpp:
+        * rendering/updating/RenderTreeBuilderFirstLetter.cpp:
+
 2021-10-19  Jigen Zhou  <jigen.z...@sony.com>
 
         r284315 can cause build break.

Modified: trunk/Source/WebCore/animation/KeyframeEffectStack.cpp (284515 => 284516)


--- trunk/Source/WebCore/animation/KeyframeEffectStack.cpp	2021-10-20 03:03:58 UTC (rev 284515)
+++ trunk/Source/WebCore/animation/KeyframeEffectStack.cpp	2021-10-20 03:25:35 UTC (rev 284516)
@@ -31,6 +31,7 @@
 #include "KeyframeEffect.h"
 #include "WebAnimation.h"
 #include "WebAnimationUtilities.h"
+#include <wtf/PointerComparison.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/bindings/js/JSDOMWindowBase.cpp (284515 => 284516)


--- trunk/Source/WebCore/bindings/js/JSDOMWindowBase.cpp	2021-10-20 03:03:58 UTC (rev 284515)
+++ trunk/Source/WebCore/bindings/js/JSDOMWindowBase.cpp	2021-10-20 03:25:35 UTC (rev 284516)
@@ -30,6 +30,7 @@
 #include "DOMWindow.h"
 #include "Document.h"
 #include "Element.h"
+#include "Event.h"
 #include "EventLoop.h"
 #include "FetchResponse.h"
 #include "Frame.h"

Modified: trunk/Source/WebCore/dom/ActiveDOMObject.cpp (284515 => 284516)


--- trunk/Source/WebCore/dom/ActiveDOMObject.cpp	2021-10-20 03:03:58 UTC (rev 284515)
+++ trunk/Source/WebCore/dom/ActiveDOMObject.cpp	2021-10-20 03:25:35 UTC (rev 284516)
@@ -28,6 +28,7 @@
 #include "ActiveDOMObject.h"
 
 #include "Document.h"
+#include "Event.h"
 #include "EventLoop.h"
 #include "ScriptExecutionContext.h"
 

Modified: trunk/Source/WebCore/html/DOMFormData.cpp (284515 => 284516)


--- trunk/Source/WebCore/html/DOMFormData.cpp	2021-10-20 03:03:58 UTC (rev 284515)
+++ trunk/Source/WebCore/html/DOMFormData.cpp	2021-10-20 03:25:35 UTC (rev 284516)
@@ -31,6 +31,7 @@
 #include "config.h"
 #include "DOMFormData.h"
 
+#include "Document.h"
 #include "HTMLFormControlElement.h"
 #include "HTMLFormElement.h"
 

Modified: trunk/Source/WebCore/html/HTMLDialogElement.cpp (284515 => 284516)


--- trunk/Source/WebCore/html/HTMLDialogElement.cpp	2021-10-20 03:03:58 UTC (rev 284515)
+++ trunk/Source/WebCore/html/HTMLDialogElement.cpp	2021-10-20 03:25:35 UTC (rev 284516)
@@ -25,11 +25,15 @@
 
 #include "config.h"
 #include "HTMLDialogElement.h"
+
+#include "DocumentInlines.h"
 #include "EventLoop.h"
 #include "EventNames.h"
 #include "FocusOptions.h"
-
+#include "GCReachableRef.h"
 #include "HTMLNames.h"
+#include "RenderElement.h"
+#include "TypedElementDescendantIterator.h"
 #include <wtf/IsoMallocInlines.h>
 
 namespace WebCore {

Modified: trunk/Source/WebCore/html/HTMLOutputElement.cpp (284515 => 284516)


--- trunk/Source/WebCore/html/HTMLOutputElement.cpp	2021-10-20 03:03:58 UTC (rev 284515)
+++ trunk/Source/WebCore/html/HTMLOutputElement.cpp	2021-10-20 03:25:35 UTC (rev 284516)
@@ -33,6 +33,7 @@
 #include "HTMLOutputElement.h"
 
 #include "DOMTokenList.h"
+#include "Document.h"
 #include "HTMLFormElement.h"
 #include "HTMLNames.h"
 #include <wtf/IsoMallocInlines.h>

Modified: trunk/Source/WebCore/html/ResetInputType.cpp (284515 => 284516)


--- trunk/Source/WebCore/html/ResetInputType.cpp	2021-10-20 03:03:58 UTC (rev 284515)
+++ trunk/Source/WebCore/html/ResetInputType.cpp	2021-10-20 03:25:35 UTC (rev 284516)
@@ -32,6 +32,7 @@
 #include "config.h"
 #include "ResetInputType.h"
 
+#include "Document.h"
 #include "Event.h"
 #include "HTMLFormElement.h"
 #include "HTMLInputElement.h"

Modified: trunk/Source/WebCore/page/DragController.cpp (284515 => 284516)


--- trunk/Source/WebCore/page/DragController.cpp	2021-10-20 03:03:58 UTC (rev 284515)
+++ trunk/Source/WebCore/page/DragController.cpp	2021-10-20 03:25:35 UTC (rev 284516)
@@ -28,7 +28,9 @@
 
 #include "HTMLAnchorElement.h"
 #include "SVGAElement.h"
+#include "SVGElementTypeHelpers.h"
 
+
 #if ENABLE(DRAG_SUPPORT)
 #include "CachedImage.h"
 #include "CachedResourceLoader.h"
@@ -81,7 +83,6 @@
 #include "RenderView.h"
 #include "ReplaceSelectionCommand.h"
 #include "ResourceRequest.h"
-#include "SVGElementTypeHelpers.h"
 #include "SecurityOrigin.h"
 #include "Settings.h"
 #include "ShadowRoot.h"

Modified: trunk/Source/WebCore/page/EventHandler.cpp (284515 => 284516)


--- trunk/Source/WebCore/page/EventHandler.cpp	2021-10-20 03:03:58 UTC (rev 284515)
+++ trunk/Source/WebCore/page/EventHandler.cpp	2021-10-20 03:25:35 UTC (rev 284516)
@@ -120,6 +120,7 @@
 #include "WindowsKeyboardCodes.h"
 #include <wtf/Assertions.h>
 #include <wtf/NeverDestroyed.h>
+#include <wtf/SetForScope.h>
 #include <wtf/StdLibExtras.h>
 
 #if ENABLE(IOS_TOUCH_EVENTS)

Modified: trunk/Source/WebCore/rendering/updating/RenderTreeBuilderFirstLetter.cpp (284515 => 284516)


--- trunk/Source/WebCore/rendering/updating/RenderTreeBuilderFirstLetter.cpp	2021-10-20 03:03:58 UTC (rev 284515)
+++ trunk/Source/WebCore/rendering/updating/RenderTreeBuilderFirstLetter.cpp	2021-10-20 03:25:35 UTC (rev 284516)
@@ -34,6 +34,7 @@
 #include "RenderTable.h"
 #include "RenderTextFragment.h"
 #include "RenderTreeBuilder.h"
+#include "StyleChange.h"
 
 namespace WebCore {
 

Modified: trunk/Source/WebKit/ChangeLog (284515 => 284516)


--- trunk/Source/WebKit/ChangeLog	2021-10-20 03:03:58 UTC (rev 284515)
+++ trunk/Source/WebKit/ChangeLog	2021-10-20 03:25:35 UTC (rev 284516)
@@ -1,3 +1,13 @@
+2021-10-19  Don Olmstead  <don.olmst...@sony.com>
+
+        Non-unified build fixes, mid October 2021 edition
+        https://bugs.webkit.org/show_bug.cgi?id=231915
+
+        Unreviewed non-unified build fixes.
+
+        * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementConnection.cpp:
+        * WebProcess/GPU/graphics/RemoteDisplayListRecorderProxy.cpp:
+
 2021-10-19  Ross Kirsling  <ross.kirsl...@sony.com>
 
         [CMake] Align OptionsMac with Xcode build

Modified: trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementConnection.cpp (284515 => 284516)


--- trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementConnection.cpp	2021-10-20 03:03:58 UTC (rev 284515)
+++ trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementConnection.cpp	2021-10-20 03:25:35 UTC (rev 284516)
@@ -26,6 +26,8 @@
 #include "config.h"
 #include "PrivateClickMeasurementConnection.h"
 
+#include "NetworkSession.h"
+
 namespace WebKit {
 
 namespace PCM {

Modified: trunk/Source/WebKit/WebProcess/GPU/graphics/RemoteDisplayListRecorderProxy.cpp (284515 => 284516)


--- trunk/Source/WebKit/WebProcess/GPU/graphics/RemoteDisplayListRecorderProxy.cpp	2021-10-20 03:03:58 UTC (rev 284515)
+++ trunk/Source/WebKit/WebProcess/GPU/graphics/RemoteDisplayListRecorderProxy.cpp	2021-10-20 03:25:35 UTC (rev 284516)
@@ -29,6 +29,7 @@
 #if ENABLE(GPU_PROCESS)
 
 #include "RemoteDisplayListRecorderMessages.h"
+#include "WebCoreArgumentCoders.h"
 #include <WebCore/DisplayList.h>
 #include <WebCore/DisplayListDrawingContext.h>
 #include <WebCore/DisplayListItems.h>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to