Title: [269789] trunk/Source
Revision
269789
Author
[email protected]
Date
2020-11-13 13:19:45 -0800 (Fri, 13 Nov 2020)

Log Message

Non-unified build fixes.
https://bugs.webkit.org/show_bug.cgi?id=218905

Unreviewed.


Source/WebCore:

* Modules/mediarecorder/MediaRecorder.h:
* Modules/mediastream/libwebrtc/LibWebRTCRtpReceiverTransformBackend.h:
* Modules/mediastream/libwebrtc/LibWebRTCRtpSenderTransformBackend.h:
* animation/WebAnimationUtilities.h:
* display/css/DisplayBoxDecorationData.h:
* dom/BoundaryPoint.cpp:
* dom/EventDispatcher.cpp:
* html/HTMLFrameOwnerElement.h:
* layout/integration/LayoutIntegrationInlineContentBuilder.h:
* loader/DocumentWriter.h:
* page/FrameTree.h:
* platform/encryptedmedia/CDMPrivate.cpp:
* rendering/InlineTextBox.cpp:

Source/WebKit:

* GPUProcess/graphics/RemoteRenderingBackend.cpp:
* GPUProcess/graphics/RemoteResourceCache.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (269788 => 269789)


--- trunk/Source/WebCore/ChangeLog	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebCore/ChangeLog	2020-11-13 21:19:45 UTC (rev 269789)
@@ -1,3 +1,24 @@
+2020-11-13  Claudio Saavedra  <[email protected]>
+
+        Non-unified build fixes.
+        https://bugs.webkit.org/show_bug.cgi?id=218905
+
+        Unreviewed.
+
+        * Modules/mediarecorder/MediaRecorder.h:
+        * Modules/mediastream/libwebrtc/LibWebRTCRtpReceiverTransformBackend.h:
+        * Modules/mediastream/libwebrtc/LibWebRTCRtpSenderTransformBackend.h:
+        * animation/WebAnimationUtilities.h:
+        * display/css/DisplayBoxDecorationData.h:
+        * dom/BoundaryPoint.cpp:
+        * dom/EventDispatcher.cpp:
+        * html/HTMLFrameOwnerElement.h:
+        * layout/integration/LayoutIntegrationInlineContentBuilder.h:
+        * loader/DocumentWriter.h:
+        * page/FrameTree.h:
+        * platform/encryptedmedia/CDMPrivate.cpp:
+        * rendering/InlineTextBox.cpp:
+
 2020-11-12  Darin Adler  <[email protected]>
 
         Remove unused advanced plug-in features: snapshotting and plug-in load policy

Modified: trunk/Source/WebCore/Modules/mediarecorder/MediaRecorder.h (269788 => 269789)


--- trunk/Source/WebCore/Modules/mediarecorder/MediaRecorder.h	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebCore/Modules/mediarecorder/MediaRecorder.h	2020-11-13 21:19:45 UTC (rev 269789)
@@ -33,6 +33,7 @@
 #include "MediaStream.h"
 #include "MediaStreamTrackPrivate.h"
 #include "Timer.h"
+#include <wtf/Deque.h>
 #include <wtf/UniqueRef.h>
 
 namespace WebCore {

Modified: trunk/Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCRtpReceiverTransformBackend.h (269788 => 269789)


--- trunk/Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCRtpReceiverTransformBackend.h	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCRtpReceiverTransformBackend.h	2020-11-13 21:19:45 UTC (rev 269789)
@@ -27,6 +27,7 @@
 #if ENABLE(WEB_RTC) && USE(LIBWEBRTC)
 
 #include "LibWebRTCRtpTransformBackend.h"
+#include <wtf/Ref.h>
 
 ALLOW_UNUSED_PARAMETERS_BEGIN
 ALLOW_DEPRECATED_DECLARATIONS_BEGIN

Modified: trunk/Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCRtpSenderTransformBackend.h (269788 => 269789)


--- trunk/Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCRtpSenderTransformBackend.h	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCRtpSenderTransformBackend.h	2020-11-13 21:19:45 UTC (rev 269789)
@@ -27,6 +27,7 @@
 #if ENABLE(WEB_RTC) && USE(LIBWEBRTC)
 
 #include "LibWebRTCRtpTransformBackend.h"
+#include <wtf/Ref.h>
 
 ALLOW_UNUSED_PARAMETERS_BEGIN
 ALLOW_DEPRECATED_DECLARATIONS_BEGIN

Modified: trunk/Source/WebCore/animation/WebAnimationUtilities.h (269788 => 269789)


--- trunk/Source/WebCore/animation/WebAnimationUtilities.h	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebCore/animation/WebAnimationUtilities.h	2020-11-13 21:19:45 UTC (rev 269789)
@@ -31,6 +31,8 @@
 
 namespace WebCore {
 
+enum class PseudoId : uint16_t;
+
 class Element;
 class WebAnimation;
 

Modified: trunk/Source/WebCore/display/css/DisplayBoxDecorationData.h (269788 => 269789)


--- trunk/Source/WebCore/display/css/DisplayBoxDecorationData.h	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebCore/display/css/DisplayBoxDecorationData.h	2020-11-13 21:19:45 UTC (rev 269789)
@@ -27,6 +27,7 @@
 
 #if ENABLE(LAYOUT_FORMATTING_CONTEXT)
 
+#include "Color.h"
 #include "DisplayFillLayerImageGeometry.h"
 #include "FloatRoundedRect.h"
 #include "RectEdges.h"

Modified: trunk/Source/WebCore/dom/BoundaryPoint.cpp (269788 => 269789)


--- trunk/Source/WebCore/dom/BoundaryPoint.cpp	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebCore/dom/BoundaryPoint.cpp	2020-11-13 21:19:45 UTC (rev 269789)
@@ -25,6 +25,7 @@
 
 #include "config.h"
 #include "BoundaryPoint.h"
+#include "ContainerNode.h"
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/dom/EventDispatcher.cpp (269788 => 269789)


--- trunk/Source/WebCore/dom/EventDispatcher.cpp	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebCore/dom/EventDispatcher.cpp	2020-11-13 21:19:45 UTC (rev 269789)
@@ -28,6 +28,7 @@
 
 #include "CompositionEvent.h"
 #include "EventContext.h"
+#include "EventNames.h"
 #include "EventPath.h"
 #include "Frame.h"
 #include "FrameLoader.h"

Modified: trunk/Source/WebCore/html/HTMLFrameOwnerElement.h (269788 => 269789)


--- trunk/Source/WebCore/html/HTMLFrameOwnerElement.h	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebCore/html/HTMLFrameOwnerElement.h	2020-11-13 21:19:45 UTC (rev 269789)
@@ -20,6 +20,7 @@
 
 #pragma once
 
+#include "Frame.h"
 #include "HTMLElement.h"
 #include "ReferrerPolicy.h"
 #include <wtf/HashCountedSet.h>
@@ -27,7 +28,6 @@
 
 namespace WebCore {
 
-class Frame;
 class RenderWidget;
 
 class HTMLFrameOwnerElement : public HTMLElement {

Modified: trunk/Source/WebCore/layout/integration/LayoutIntegrationInlineContentBuilder.h (269788 => 269789)


--- trunk/Source/WebCore/layout/integration/LayoutIntegrationInlineContentBuilder.h	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebCore/layout/integration/LayoutIntegrationInlineContentBuilder.h	2020-11-13 21:19:45 UTC (rev 269789)
@@ -27,6 +27,8 @@
 
 #if ENABLE(LAYOUT_FORMATTING_CONTEXT)
 
+#include <wtf/Vector.h>
+
 namespace WebCore {
 
 class RenderBlockFlow;

Modified: trunk/Source/WebCore/loader/DocumentWriter.h (269788 => 269789)


--- trunk/Source/WebCore/loader/DocumentWriter.h	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebCore/loader/DocumentWriter.h	2020-11-13 21:19:45 UTC (rev 269789)
@@ -28,6 +28,7 @@
 
 #pragma once
 
+#include <wtf/WeakPtr.h>
 #include <wtf/text/WTFString.h>
 
 namespace WebCore {

Modified: trunk/Source/WebCore/page/FrameTree.h (269788 => 269789)


--- trunk/Source/WebCore/page/FrameTree.h	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebCore/page/FrameTree.h	2020-11-13 21:19:45 UTC (rev 269789)
@@ -19,6 +19,7 @@
 
 #pragma once
 
+#include <wtf/WeakPtr.h>
 #include <wtf/text/AtomString.h>
 
 namespace WebCore {

Modified: trunk/Source/WebCore/platform/encryptedmedia/CDMPrivate.cpp (269788 => 269789)


--- trunk/Source/WebCore/platform/encryptedmedia/CDMPrivate.cpp	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebCore/platform/encryptedmedia/CDMPrivate.cpp	2020-11-13 21:19:45 UTC (rev 269789)
@@ -36,6 +36,7 @@
 #include "MediaPlayer.h"
 #include "NotImplemented.h"
 #include "ParsedContentType.h"
+#include "SharedBuffer.h"
 #include <wtf/WeakPtr.h>
 
 namespace WebCore {

Modified: trunk/Source/WebCore/rendering/InlineTextBox.cpp (269788 => 269789)


--- trunk/Source/WebCore/rendering/InlineTextBox.cpp	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebCore/rendering/InlineTextBox.cpp	2020-11-13 21:19:45 UTC (rev 269789)
@@ -52,6 +52,7 @@
 #include "RenderView.h"
 #include "RenderedDocumentMarker.h"
 #include "RuntimeEnabledFeatures.h"
+#include "Settings.h"
 #include "Text.h"
 #include "TextDecorationPainter.h"
 #include "TextPaintStyle.h"

Modified: trunk/Source/WebKit/ChangeLog (269788 => 269789)


--- trunk/Source/WebKit/ChangeLog	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebKit/ChangeLog	2020-11-13 21:19:45 UTC (rev 269789)
@@ -1,3 +1,13 @@
+2020-11-13  Claudio Saavedra  <[email protected]>
+
+        Non-unified build fixes.
+        https://bugs.webkit.org/show_bug.cgi?id=218905
+
+        Unreviewed.
+
+        * GPUProcess/graphics/RemoteRenderingBackend.cpp:
+        * GPUProcess/graphics/RemoteResourceCache.h:
+
 2020-11-13  Alex Christensen  <[email protected]>
 
         Remove more SecItemShim leftovers

Modified: trunk/Source/WebKit/GPUProcess/graphics/RemoteRenderingBackend.cpp (269788 => 269789)


--- trunk/Source/WebKit/GPUProcess/graphics/RemoteRenderingBackend.cpp	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebKit/GPUProcess/graphics/RemoteRenderingBackend.cpp	2020-11-13 21:19:45 UTC (rev 269789)
@@ -31,6 +31,8 @@
 #include "DisplayListReaderHandle.h"
 #include "GPUConnectionToWebProcess.h"
 #include "PlatformRemoteImageBuffer.h"
+#include "RemoteMediaPlayerManagerProxy.h"
+#include "RemoteMediaPlayerProxy.h"
 #include "RemoteRenderingBackendMessages.h"
 #include "RemoteRenderingBackendProxyMessages.h"
 #include <wtf/CheckedArithmetic.h>

Modified: trunk/Source/WebKit/GPUProcess/graphics/RemoteResourceCache.h (269788 => 269789)


--- trunk/Source/WebKit/GPUProcess/graphics/RemoteResourceCache.h	2020-11-13 21:11:18 UTC (rev 269788)
+++ trunk/Source/WebKit/GPUProcess/graphics/RemoteResourceCache.h	2020-11-13 21:19:45 UTC (rev 269789)
@@ -27,13 +27,11 @@
 
 #if ENABLE(GPU_PROCESS)
 
+#include <WebCore/ImageBuffer.h>
+#include <WebCore/NativeImage.h>
 #include <WebCore/RenderingResourceIdentifier.h>
 #include <wtf/HashMap.h>
 
-namespace WebCore {
-class ImageBuffer;
-}
-
 namespace WebKit {
 
 class RemoteRenderingBackend;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to