Title: [281493] trunk/Source
Revision
281493
Author
[email protected]
Date
2021-08-24 06:48:35 -0700 (Tue, 24 Aug 2021)

Log Message

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

Unreviewed non-unified build fixes.


Source/WebCore:

* Modules/mediastream/libwebrtc/LibWebRTCDtlsTransportBackend.cpp: Add missing
LibWebRTCProvider.h and _javascript_Core/ArrayBuffer.h headers.
* fileapi/ThreadableBlobRegistry.cpp: Add missing PolicyContainer.h header.
* layout/formattingContexts/inline/InlineFormattingGeometry.cpp: Add missing FontCascade.h
header.
* layout/formattingContexts/inline/InlineLineBoxVerticalAligner.cpp: Add missing
FontCascade.h, InlineFormattingContext.h, and LayoutBoxGeometry.h headers.

Source/WebKit:

* NetworkProcess/Classifier/ResourceLoadStatisticsMemoryStore.cpp: Add missing
wtf/SuspendableWorkQueue.h header.
* NetworkProcess/Classifier/ResourceLoadStatisticsStore.cpp: Ditto.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (281492 => 281493)


--- trunk/Source/WebCore/ChangeLog	2021-08-24 12:57:41 UTC (rev 281492)
+++ trunk/Source/WebCore/ChangeLog	2021-08-24 13:48:35 UTC (rev 281493)
@@ -1,3 +1,18 @@
+2021-08-24  Adrian Perez de Castro  <[email protected]>
+
+        Non-unified build fixes, late August 2021
+        https://bugs.webkit.org/show_bug.cgi?id=229440
+
+        Unreviewed non-unified build fixes.
+
+        * Modules/mediastream/libwebrtc/LibWebRTCDtlsTransportBackend.cpp: Add missing
+        LibWebRTCProvider.h and _javascript_Core/ArrayBuffer.h headers.
+        * fileapi/ThreadableBlobRegistry.cpp: Add missing PolicyContainer.h header.
+        * layout/formattingContexts/inline/InlineFormattingGeometry.cpp: Add missing FontCascade.h
+        header.
+        * layout/formattingContexts/inline/InlineLineBoxVerticalAligner.cpp: Add missing
+        FontCascade.h, InlineFormattingContext.h, and LayoutBoxGeometry.h headers.
+
 2021-08-24  Tim Nguyen  <[email protected]>
 
         Move cancel dialog task to `defaultKeyboardEventHandler`.

Modified: trunk/Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCDtlsTransportBackend.cpp (281492 => 281493)


--- trunk/Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCDtlsTransportBackend.cpp	2021-08-24 12:57:41 UTC (rev 281492)
+++ trunk/Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCDtlsTransportBackend.cpp	2021-08-24 13:48:35 UTC (rev 281493)
@@ -27,6 +27,8 @@
 
 #if ENABLE(WEB_RTC) && USE(LIBWEBRTC)
 
+#include "LibWebRTCProvider.h"
+#include <_javascript_Core/ArrayBuffer.h>
 #include <webrtc/api/dtls_transport_interface.h>
 
 namespace WebCore {

Modified: trunk/Source/WebCore/fileapi/ThreadableBlobRegistry.cpp (281492 => 281493)


--- trunk/Source/WebCore/fileapi/ThreadableBlobRegistry.cpp	2021-08-24 12:57:41 UTC (rev 281492)
+++ trunk/Source/WebCore/fileapi/ThreadableBlobRegistry.cpp	2021-08-24 13:48:35 UTC (rev 281493)
@@ -37,6 +37,7 @@
 #include "BlobRegistry.h"
 #include "BlobURL.h"
 #include "CrossOriginOpenerPolicy.h"
+#include "PolicyContainer.h"
 #include "SecurityOrigin.h"
 #include <mutex>
 #include <wtf/CrossThreadQueue.h>

Modified: trunk/Source/WebCore/layout/formattingContexts/inline/InlineFormattingGeometry.cpp (281492 => 281493)


--- trunk/Source/WebCore/layout/formattingContexts/inline/InlineFormattingGeometry.cpp	2021-08-24 12:57:41 UTC (rev 281492)
+++ trunk/Source/WebCore/layout/formattingContexts/inline/InlineFormattingGeometry.cpp	2021-08-24 13:48:35 UTC (rev 281493)
@@ -29,6 +29,7 @@
 #if ENABLE(LAYOUT_FORMATTING_CONTEXT)
 
 #include "FloatingContext.h"
+#include "FontCascade.h"
 #include "FormattingContext.h"
 #include "InlineFormattingContext.h"
 #include "InlineFormattingQuirks.h"

Modified: trunk/Source/WebCore/layout/formattingContexts/inline/InlineLineBoxVerticalAligner.cpp (281492 => 281493)


--- trunk/Source/WebCore/layout/formattingContexts/inline/InlineLineBoxVerticalAligner.cpp	2021-08-24 12:57:41 UTC (rev 281492)
+++ trunk/Source/WebCore/layout/formattingContexts/inline/InlineLineBoxVerticalAligner.cpp	2021-08-24 13:48:35 UTC (rev 281493)
@@ -28,6 +28,10 @@
 
 #if ENABLE(LAYOUT_FORMATTING_CONTEXT)
 
+#include "FontCascade.h"
+#include "InlineFormattingContext.h"
+#include "LayoutBoxGeometry.h"
+
 namespace WebCore {
 namespace Layout {
 

Modified: trunk/Source/WebKit/ChangeLog (281492 => 281493)


--- trunk/Source/WebKit/ChangeLog	2021-08-24 12:57:41 UTC (rev 281492)
+++ trunk/Source/WebKit/ChangeLog	2021-08-24 13:48:35 UTC (rev 281493)
@@ -1,3 +1,14 @@
+2021-08-24  Adrian Perez de Castro  <[email protected]>
+
+        Non-unified build fixes, late August 2021
+        https://bugs.webkit.org/show_bug.cgi?id=229440
+
+        Unreviewed non-unified build fixes.
+
+        * NetworkProcess/Classifier/ResourceLoadStatisticsMemoryStore.cpp: Add missing
+        wtf/SuspendableWorkQueue.h header.
+        * NetworkProcess/Classifier/ResourceLoadStatisticsStore.cpp: Ditto.
+
 2021-08-23  Carlos Garcia Campos  <[email protected]>
 
         [SOUP] Show TLS protocol version and ciphersuite name in the inspector

Modified: trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsMemoryStore.cpp (281492 => 281493)


--- trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsMemoryStore.cpp	2021-08-24 12:57:41 UTC (rev 281492)
+++ trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsMemoryStore.cpp	2021-08-24 13:48:35 UTC (rev 281493)
@@ -45,6 +45,7 @@
 #include <wtf/CrossThreadCopier.h>
 #include <wtf/DateMath.h>
 #include <wtf/MathExtras.h>
+#include <wtf/SuspendableWorkQueue.h>
 #include <wtf/text/StringBuilder.h>
 
 namespace WebKit {

Modified: trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsStore.cpp (281492 => 281493)


--- trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsStore.cpp	2021-08-24 12:57:41 UTC (rev 281492)
+++ trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsStore.cpp	2021-08-24 13:48:35 UTC (rev 281493)
@@ -44,6 +44,7 @@
 #include <wtf/CrossThreadCopier.h>
 #include <wtf/DateMath.h>
 #include <wtf/MathExtras.h>
+#include <wtf/SuspendableWorkQueue.h>
 #include <wtf/text/StringBuilder.h>
 
 namespace WebKit {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to