Skip to content

Commit ce6ead9

Browse files
committed
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. Canonical link: https://commits.webkit.org/240427@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@280890 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent b8f81c7 commit ce6ead9

6 files changed

Lines changed: 18 additions & 0 deletions

File tree

Source/WebCore/ChangeLog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2021-08-11 Adrian Perez de Castro <aperez@igalia.com>
2+
3+
Non-unified build fixes, mid August 2021 edition
4+
https://bugs.webkit.org/show_bug.cgi?id=228985
5+
6+
Unreviewed non-unified build fixes.
7+
8+
* fileapi/ThreadableBlobRegistry.cpp: Add missing CrossOriginOpenerPolicy.h include.
9+
* html/FormController.cpp: Add missing TypedElementDescendantIterator.h include.
10+
* html/FormController.h: Add missing forward declaration for the Document type.
11+
* loader/CrossOriginEmbedderPolicy.cpp: Add missing ResourceResponse.h include.
12+
* loader/CrossOriginOpenerPolicy.cpp: Ditto.
13+
114
2021-08-11 Cathie Chen <cathiechen@igalia.com>
215

316
REGRESSION (r277997): Max-height not applied for image

Source/WebCore/fileapi/ThreadableBlobRegistry.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
#include "BlobPart.h"
3737
#include "BlobRegistry.h"
3838
#include "BlobURL.h"
39+
#include "CrossOriginOpenerPolicy.h"
3940
#include "SecurityOrigin.h"
4041
#include <mutex>
4142
#include <wtf/CrossThreadQueue.h>

Source/WebCore/html/FormController.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include "HTMLFormElement.h"
2525
#include "HTMLInputElement.h"
2626
#include "ScriptDisallowedScope.h"
27+
#include "TypedElementDescendantIterator.h"
2728
#include <wtf/NeverDestroyed.h>
2829
#include <wtf/WeakHashMap.h>
2930
#include <wtf/text/StringBuilder.h>

Source/WebCore/html/FormController.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929

3030
namespace WebCore {
3131

32+
class Document;
3233
class FormKeyGenerator;
3334
class HTMLFormControlElementWithState;
3435
class HTMLFormElement;

Source/WebCore/loader/CrossOriginEmbedderPolicy.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
#include "HTTPHeaderNames.h"
3030
#include "HTTPParsers.h"
31+
#include "ResourceResponse.h"
3132
#include "ScriptExecutionContext.h"
3233

3334
namespace WebCore {

Source/WebCore/loader/CrossOriginOpenerPolicy.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#include "CrossOriginEmbedderPolicy.h"
3030
#include "HTTPHeaderNames.h"
3131
#include "HTTPParsers.h"
32+
#include "ResourceResponse.h"
3233
#include "ScriptExecutionContext.h"
3334

3435
namespace WebCore {

0 commit comments

Comments
 (0)