Changeset 249714 in webkit


Ignore:
Timestamp:
Sep 10, 2019 8:10:56 AM (5 years ago)
Author:
Adrian Perez de Castro
Message:

[GTK][WPE] Fixes for non-unified builds after r249022
https://bugs.webkit.org/show_bug.cgi?id=201610

Reviewed by Joseph Pecoraro.

Source/WebCore:

No new tests needed.

  • fileapi/NetworkSendQueue.h: Add missing inclusion of wtf/WeakPtr.h; add the namespace to WTF::WeakPtr

which is needed because there is no "using" clause.

  • inspector/InspectorInstrumentation.cpp: Add missing inclusion of the PageDOMDebuggerAgent.h header.
  • inspector/agents/WebDebuggerAgent.cpp: Add missing inclusion of the ScriptExecutionContext.h header.
  • inspector/agents/page/PageDOMDebuggerAgent.cpp: Add missing inclusion of the InstrumentingAgents.h header.

Source/WebKit:

  • NetworkProcess/NetworkCORSPreflightChecker.h: Add missing inclusion of the WebPageProxyIdentifier.h header.
  • NetworkProcess/NetworkLoadChecker.h: Add missing inclusion of the WebPageProxyIdentifier.h header.
Location:
trunk/Source
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r249710 r249714  
     12019-09-10  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [GTK][WPE] Fixes for non-unified builds after r249022
     4        https://bugs.webkit.org/show_bug.cgi?id=201610
     5
     6        Reviewed by Joseph Pecoraro.
     7
     8        No new tests needed.
     9
     10        * fileapi/NetworkSendQueue.h: Add missing inclusion of wtf/WeakPtr.h; add the namespace to WTF::WeakPtr
     11        which is needed because there is no "using" clause.
     12        * inspector/InspectorInstrumentation.cpp: Add missing inclusion of the PageDOMDebuggerAgent.h header.
     13        * inspector/agents/WebDebuggerAgent.cpp: Add missing inclusion of the ScriptExecutionContext.h header.
     14        * inspector/agents/page/PageDOMDebuggerAgent.cpp: Add missing inclusion of the InstrumentingAgents.h header.
     15
    1162019-09-10  Youenn Fablet  <youenn@apple.com>
    217
  • trunk/Source/WebCore/fileapi/NetworkSendQueue.h

    r249481 r249714  
    3030#include <wtf/UniqueRef.h>
    3131#include <wtf/Variant.h>
     32#include <wtf/WeakPtr.h>
    3233
    3334namespace JSC {
     
    6364    Deque<Message> m_queue;
    6465
    65     WeakPtr<Document> m_document;
     66    WTF::WeakPtr<Document> m_document;
    6667
    6768    WriteString m_writeString;
  • trunk/Source/WebCore/inspector/InspectorInstrumentation.cpp

    r249504 r249714  
    5555#include "InstrumentingAgents.h"
    5656#include "LoaderStrategy.h"
     57#include "PageDOMDebuggerAgent.h"
    5758#include "PageDebuggerAgent.h"
    5859#include "PageHeapAgent.h"
  • trunk/Source/WebCore/inspector/agents/WebDebuggerAgent.cpp

    r249315 r249714  
    3030#include "EventTarget.h"
    3131#include "InstrumentingAgents.h"
     32#include "ScriptExecutionContext.h"
    3233#include "Timer.h"
    3334
  • trunk/Source/WebCore/inspector/agents/page/PageDOMDebuggerAgent.cpp

    r249305 r249714  
    3030#include "Frame.h"
    3131#include "InspectorDOMAgent.h"
     32#include "InstrumentingAgents.h"
    3233#include "Node.h"
    3334
  • trunk/Source/WebKit/ChangeLog

    r249712 r249714  
     12019-09-10  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [GTK][WPE] Fixes for non-unified builds after r249022
     4        https://bugs.webkit.org/show_bug.cgi?id=201610
     5
     6        Reviewed by Joseph Pecoraro.
     7
     8        * NetworkProcess/NetworkCORSPreflightChecker.h: Add missing inclusion of the WebPageProxyIdentifier.h header.
     9        * NetworkProcess/NetworkLoadChecker.h: Add missing inclusion of the WebPageProxyIdentifier.h header.
     10
    1112019-09-10  Youenn Fablet  <youenn@apple.com>
    212
  • trunk/Source/WebKit/NetworkProcess/NetworkCORSPreflightChecker.h

    r249501 r249714  
    2727
    2828#include "NetworkDataTask.h"
     29#include "WebPageProxyIdentifier.h"
    2930#include <WebCore/FrameIdentifier.h>
    3031#include <WebCore/NetworkLoadInformation.h>
  • trunk/Source/WebKit/NetworkProcess/NetworkLoadChecker.h

    r249501 r249714  
    2727
    2828#include "UserContentControllerIdentifier.h"
     29#include "WebPageProxyIdentifier.h"
    2930#include <WebCore/ContentExtensionActions.h>
    3031#include <WebCore/ContentSecurityPolicyResponseHeaders.h>
Note: See TracChangeset for help on using the changeset viewer.