Title: [280890] trunk/Source/WebCore
Revision
280890
Author
[email protected]
Date
2021-08-11 02:47:27 -0700 (Wed, 11 Aug 2021)

Log Message

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

Unreviewed non-unified build fixes.


* fileapi/ThreadableBlobRegistry.cpp: Add missing CrossOriginOpenerPolicy.h include.
* html/FormController.cpp: Add missing TypedElementDescendantIterator.h include.
* html/FormController.h: Add missing forward declaration for the Document type.
* loader/CrossOriginEmbedderPolicy.cpp: Add missing ResourceResponse.h include.
* loader/CrossOriginOpenerPolicy.cpp: Ditto.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (280889 => 280890)


--- trunk/Source/WebCore/ChangeLog	2021-08-11 07:53:06 UTC (rev 280889)
+++ trunk/Source/WebCore/ChangeLog	2021-08-11 09:47:27 UTC (rev 280890)
@@ -1,3 +1,16 @@
+2021-08-11  Adrian Perez de Castro  <[email protected]>
+
+        Non-unified build fixes, mid August 2021 edition
+        https://bugs.webkit.org/show_bug.cgi?id=228985
+
+        Unreviewed non-unified build fixes.
+
+        * fileapi/ThreadableBlobRegistry.cpp: Add missing CrossOriginOpenerPolicy.h include.
+        * html/FormController.cpp: Add missing TypedElementDescendantIterator.h include.
+        * html/FormController.h: Add missing forward declaration for the Document type.
+        * loader/CrossOriginEmbedderPolicy.cpp: Add missing ResourceResponse.h include.
+        * loader/CrossOriginOpenerPolicy.cpp: Ditto.
+
 2021-08-11  Cathie Chen  <[email protected]>
 
         REGRESSION (r277997): Max-height not applied for image

Modified: trunk/Source/WebCore/fileapi/ThreadableBlobRegistry.cpp (280889 => 280890)


--- trunk/Source/WebCore/fileapi/ThreadableBlobRegistry.cpp	2021-08-11 07:53:06 UTC (rev 280889)
+++ trunk/Source/WebCore/fileapi/ThreadableBlobRegistry.cpp	2021-08-11 09:47:27 UTC (rev 280890)
@@ -36,6 +36,7 @@
 #include "BlobPart.h"
 #include "BlobRegistry.h"
 #include "BlobURL.h"
+#include "CrossOriginOpenerPolicy.h"
 #include "SecurityOrigin.h"
 #include <mutex>
 #include <wtf/CrossThreadQueue.h>

Modified: trunk/Source/WebCore/html/FormController.cpp (280889 => 280890)


--- trunk/Source/WebCore/html/FormController.cpp	2021-08-11 07:53:06 UTC (rev 280889)
+++ trunk/Source/WebCore/html/FormController.cpp	2021-08-11 09:47:27 UTC (rev 280890)
@@ -24,6 +24,7 @@
 #include "HTMLFormElement.h"
 #include "HTMLInputElement.h"
 #include "ScriptDisallowedScope.h"
+#include "TypedElementDescendantIterator.h"
 #include <wtf/NeverDestroyed.h>
 #include <wtf/WeakHashMap.h>
 #include <wtf/text/StringBuilder.h>

Modified: trunk/Source/WebCore/html/FormController.h (280889 => 280890)


--- trunk/Source/WebCore/html/FormController.h	2021-08-11 07:53:06 UTC (rev 280889)
+++ trunk/Source/WebCore/html/FormController.h	2021-08-11 09:47:27 UTC (rev 280890)
@@ -29,6 +29,7 @@
 
 namespace WebCore {
 
+class Document;
 class FormKeyGenerator;
 class HTMLFormControlElementWithState;
 class HTMLFormElement;

Modified: trunk/Source/WebCore/loader/CrossOriginEmbedderPolicy.cpp (280889 => 280890)


--- trunk/Source/WebCore/loader/CrossOriginEmbedderPolicy.cpp	2021-08-11 07:53:06 UTC (rev 280889)
+++ trunk/Source/WebCore/loader/CrossOriginEmbedderPolicy.cpp	2021-08-11 09:47:27 UTC (rev 280890)
@@ -28,6 +28,7 @@
 
 #include "HTTPHeaderNames.h"
 #include "HTTPParsers.h"
+#include "ResourceResponse.h"
 #include "ScriptExecutionContext.h"
 
 namespace WebCore {

Modified: trunk/Source/WebCore/loader/CrossOriginOpenerPolicy.cpp (280889 => 280890)


--- trunk/Source/WebCore/loader/CrossOriginOpenerPolicy.cpp	2021-08-11 07:53:06 UTC (rev 280889)
+++ trunk/Source/WebCore/loader/CrossOriginOpenerPolicy.cpp	2021-08-11 09:47:27 UTC (rev 280890)
@@ -29,6 +29,7 @@
 #include "CrossOriginEmbedderPolicy.h"
 #include "HTTPHeaderNames.h"
 #include "HTTPParsers.h"
+#include "ResourceResponse.h"
 #include "ScriptExecutionContext.h"
 
 namespace WebCore {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to