Title: [266061] trunk/Source
Revision
266061
Author
ape...@igalia.com
Date
2020-08-24 08:50:22 -0700 (Mon, 24 Aug 2020)

Log Message

Non-unified build fixes, late August 2020 edition
https://bugs.webkit.org/show_bug.cgi?id=215768

Unreviewed build fix.

Source/WebCore:

No new tests needed.


* Modules/webaudio/StereoPannerNode.cpp: Add missing headers AudioNodeInput.h,
AudioNodeOutput.h, and wtf/IsoMallocInlines.h.
* bindings/js/JSHTMLCanvasElementCustom.cpp:
(WebCore::JSHTMLCanvasElement::visitAdditionalChildren):
Add JSC:: namespace to SlotVisitor parameter type.
* dom/SimpleRange.cpp: Add missing ShadowRoot.h header.
* history/CachedPage.cpp: Add missing FrameLoaderClient.h header.

Source/WebKit:


* UIProcess/WebURLSchemeTask.cpp: Add missing SharedBufferDataReference.h header.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (266060 => 266061)


--- trunk/Source/WebCore/ChangeLog	2020-08-24 15:42:26 UTC (rev 266060)
+++ trunk/Source/WebCore/ChangeLog	2020-08-24 15:50:22 UTC (rev 266061)
@@ -1,3 +1,20 @@
+2020-08-24  Adrian Perez de Castro  <ape...@igalia.com>
+
+        Non-unified build fixes, late August 2020 edition
+        https://bugs.webkit.org/show_bug.cgi?id=215768
+
+        Unreviewed build fix.
+
+        No new tests needed.
+
+        * Modules/webaudio/StereoPannerNode.cpp: Add missing headers AudioNodeInput.h,
+        AudioNodeOutput.h, and wtf/IsoMallocInlines.h.
+        * bindings/js/JSHTMLCanvasElementCustom.cpp:
+        (WebCore::JSHTMLCanvasElement::visitAdditionalChildren):
+        Add JSC:: namespace to SlotVisitor parameter type.
+        * dom/SimpleRange.cpp: Add missing ShadowRoot.h header.
+        * history/CachedPage.cpp: Add missing FrameLoaderClient.h header.
+
 2020-08-24  Zalan Bujtas  <za...@apple.com>
 
         [LFC][IFC] Use the term 'baseline' to indicate alignment baseline

Modified: trunk/Source/WebCore/Modules/webaudio/StereoPannerNode.cpp (266060 => 266061)


--- trunk/Source/WebCore/Modules/webaudio/StereoPannerNode.cpp	2020-08-24 15:42:26 UTC (rev 266060)
+++ trunk/Source/WebCore/Modules/webaudio/StereoPannerNode.cpp	2020-08-24 15:50:22 UTC (rev 266061)
@@ -30,6 +30,9 @@
 #if ENABLE(WEB_AUDIO)
 
 #include "AudioBus.h"
+#include "AudioNodeInput.h"
+#include "AudioNodeOutput.h"
+#include <wtf/IsoMallocInlines.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/bindings/js/JSHTMLCanvasElementCustom.cpp (266060 => 266061)


--- trunk/Source/WebCore/bindings/js/JSHTMLCanvasElementCustom.cpp	2020-08-24 15:42:26 UTC (rev 266060)
+++ trunk/Source/WebCore/bindings/js/JSHTMLCanvasElementCustom.cpp	2020-08-24 15:50:22 UTC (rev 266061)
@@ -31,7 +31,7 @@
 
 namespace WebCore {
 
-void JSHTMLCanvasElement::visitAdditionalChildren(SlotVisitor& visitor)
+void JSHTMLCanvasElement::visitAdditionalChildren(JSC::SlotVisitor& visitor)
 {
     visitor.addOpaqueRoot(static_cast<CanvasBase*>(&wrapped()));
 }

Modified: trunk/Source/WebCore/dom/SimpleRange.cpp (266060 => 266061)


--- trunk/Source/WebCore/dom/SimpleRange.cpp	2020-08-24 15:42:26 UTC (rev 266060)
+++ trunk/Source/WebCore/dom/SimpleRange.cpp	2020-08-24 15:50:22 UTC (rev 266061)
@@ -28,6 +28,7 @@
 
 #include "CharacterData.h"
 #include "NodeTraversal.h"
+#include "ShadowRoot.h"
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/history/CachedPage.cpp (266060 => 266061)


--- trunk/Source/WebCore/history/CachedPage.cpp	2020-08-24 15:42:26 UTC (rev 266060)
+++ trunk/Source/WebCore/history/CachedPage.cpp	2020-08-24 15:50:22 UTC (rev 266061)
@@ -31,6 +31,7 @@
 #include "FocusController.h"
 #include "Frame.h"
 #include "FrameLoader.h"
+#include "FrameLoaderClient.h"
 #include "FrameView.h"
 #include "HistoryController.h"
 #include "HistoryItem.h"

Modified: trunk/Source/WebKit/ChangeLog (266060 => 266061)


--- trunk/Source/WebKit/ChangeLog	2020-08-24 15:42:26 UTC (rev 266060)
+++ trunk/Source/WebKit/ChangeLog	2020-08-24 15:50:22 UTC (rev 266061)
@@ -1,3 +1,12 @@
+2020-08-24  Adrian Perez de Castro  <ape...@igalia.com>
+
+        Non-unified build fixes, late August 2020 edition
+        https://bugs.webkit.org/show_bug.cgi?id=215768
+
+        Unreviewed build fix.
+
+        * UIProcess/WebURLSchemeTask.cpp: Add missing SharedBufferDataReference.h header.
+
 2020-08-24  Youenn Fablet  <you...@apple.com>
 
         Cocoa WebSocketTask should expose WebSocket server extensions

Modified: trunk/Source/WebKit/UIProcess/WebURLSchemeTask.cpp (266060 => 266061)


--- trunk/Source/WebKit/UIProcess/WebURLSchemeTask.cpp	2020-08-24 15:42:26 UTC (rev 266060)
+++ trunk/Source/WebKit/UIProcess/WebURLSchemeTask.cpp	2020-08-24 15:50:22 UTC (rev 266061)
@@ -27,6 +27,7 @@
 #include "WebURLSchemeTask.h"
 
 #include "APIFrameInfo.h"
+#include "SharedBufferDataReference.h"
 #include "URLSchemeTaskParameters.h"
 #include "WebErrors.h"
 #include "WebPageMessages.h"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to