⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 280890 in webkit


Ignore:
Timestamp:
Aug 11, 2021, 2:47:27 AM (5 years ago)
Author:
Adrian Perez de Castro
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.
Location:
trunk/Source/WebCore
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r280889 r280890  
     12021-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
    1142021-08-11  Cathie Chen  <cathiechen@igalia.com>
    215
  • trunk/Source/WebCore/fileapi/ThreadableBlobRegistry.cpp

    r280881 r280890  
    3737#include "BlobRegistry.h"
    3838#include "BlobURL.h"
     39#include "CrossOriginOpenerPolicy.h"
    3940#include "SecurityOrigin.h"
    4041#include <mutex>
  • trunk/Source/WebCore/html/FormController.cpp

    r280718 r280890  
    2525#include "HTMLInputElement.h"
    2626#include "ScriptDisallowedScope.h"
     27#include "TypedElementDescendantIterator.h"
    2728#include <wtf/NeverDestroyed.h>
    2829#include <wtf/WeakHashMap.h>
  • trunk/Source/WebCore/html/FormController.h

    r280718 r280890  
    3030namespace WebCore {
    3131
     32class Document;
    3233class FormKeyGenerator;
    3334class HTMLFormControlElementWithState;
  • trunk/Source/WebCore/loader/CrossOriginEmbedderPolicy.cpp

    r280881 r280890  
    2929#include "HTTPHeaderNames.h"
    3030#include "HTTPParsers.h"
     31#include "ResourceResponse.h"
    3132#include "ScriptExecutionContext.h"
    3233
  • trunk/Source/WebCore/loader/CrossOriginOpenerPolicy.cpp

    r280881 r280890  
    3030#include "HTTPHeaderNames.h"
    3131#include "HTTPParsers.h"
     32#include "ResourceResponse.h"
    3233#include "ScriptExecutionContext.h"
    3334
Note: See TracChangeset for help on using the changeset viewer.