Diff
Modified: trunk/Source/WebCore/ChangeLog (249713 => 249714)
--- trunk/Source/WebCore/ChangeLog 2019-09-10 14:45:41 UTC (rev 249713)
+++ trunk/Source/WebCore/ChangeLog 2019-09-10 15:10:56 UTC (rev 249714)
@@ -1,3 +1,18 @@
+2019-09-10 Adrian Perez de Castro <[email protected]>
+
+ [GTK][WPE] Fixes for non-unified builds after r249022
+ https://bugs.webkit.org/show_bug.cgi?id=201610
+
+ Reviewed by Joseph Pecoraro.
+
+ 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.
+
2019-09-10 Youenn Fablet <[email protected]>
Add support to RTCDataChannel.send(Blob)
Modified: trunk/Source/WebCore/fileapi/NetworkSendQueue.h (249713 => 249714)
--- trunk/Source/WebCore/fileapi/NetworkSendQueue.h 2019-09-10 14:45:41 UTC (rev 249713)
+++ trunk/Source/WebCore/fileapi/NetworkSendQueue.h 2019-09-10 15:10:56 UTC (rev 249714)
@@ -29,6 +29,7 @@
#include <wtf/Function.h>
#include <wtf/UniqueRef.h>
#include <wtf/Variant.h>
+#include <wtf/WeakPtr.h>
namespace JSC {
class ArrayBuffer;
@@ -62,7 +63,7 @@
using Message = Variant<String, Ref<SharedBuffer>, UniqueRef<BlobLoader>>;
Deque<Message> m_queue;
- WeakPtr<Document> m_document;
+ WTF::WeakPtr<Document> m_document;
WriteString m_writeString;
WriteRawData m_writeRawData;
Modified: trunk/Source/WebCore/inspector/InspectorInstrumentation.cpp (249713 => 249714)
--- trunk/Source/WebCore/inspector/InspectorInstrumentation.cpp 2019-09-10 14:45:41 UTC (rev 249713)
+++ trunk/Source/WebCore/inspector/InspectorInstrumentation.cpp 2019-09-10 15:10:56 UTC (rev 249714)
@@ -54,6 +54,7 @@
#include "InspectorWorkerAgent.h"
#include "InstrumentingAgents.h"
#include "LoaderStrategy.h"
+#include "PageDOMDebuggerAgent.h"
#include "PageDebuggerAgent.h"
#include "PageHeapAgent.h"
#include "PageRuntimeAgent.h"
Modified: trunk/Source/WebCore/inspector/agents/WebDebuggerAgent.cpp (249713 => 249714)
--- trunk/Source/WebCore/inspector/agents/WebDebuggerAgent.cpp 2019-09-10 14:45:41 UTC (rev 249713)
+++ trunk/Source/WebCore/inspector/agents/WebDebuggerAgent.cpp 2019-09-10 15:10:56 UTC (rev 249714)
@@ -29,6 +29,7 @@
#include "EventListener.h"
#include "EventTarget.h"
#include "InstrumentingAgents.h"
+#include "ScriptExecutionContext.h"
#include "Timer.h"
namespace WebCore {
Modified: trunk/Source/WebCore/inspector/agents/page/PageDOMDebuggerAgent.cpp (249713 => 249714)
--- trunk/Source/WebCore/inspector/agents/page/PageDOMDebuggerAgent.cpp 2019-09-10 14:45:41 UTC (rev 249713)
+++ trunk/Source/WebCore/inspector/agents/page/PageDOMDebuggerAgent.cpp 2019-09-10 15:10:56 UTC (rev 249714)
@@ -29,6 +29,7 @@
#include "Element.h"
#include "Frame.h"
#include "InspectorDOMAgent.h"
+#include "InstrumentingAgents.h"
#include "Node.h"
namespace WebCore {
Modified: trunk/Source/WebKit/ChangeLog (249713 => 249714)
--- trunk/Source/WebKit/ChangeLog 2019-09-10 14:45:41 UTC (rev 249713)
+++ trunk/Source/WebKit/ChangeLog 2019-09-10 15:10:56 UTC (rev 249714)
@@ -1,3 +1,13 @@
+2019-09-10 Adrian Perez de Castro <[email protected]>
+
+ [GTK][WPE] Fixes for non-unified builds after r249022
+ https://bugs.webkit.org/show_bug.cgi?id=201610
+
+ Reviewed by Joseph Pecoraro.
+
+ * NetworkProcess/NetworkCORSPreflightChecker.h: Add missing inclusion of the WebPageProxyIdentifier.h header.
+ * NetworkProcess/NetworkLoadChecker.h: Add missing inclusion of the WebPageProxyIdentifier.h header.
+
2019-09-10 Youenn Fablet <[email protected]>
UserMediaProcessManager is revoking sandbox extensions too aggressively
Modified: trunk/Source/WebKit/NetworkProcess/NetworkCORSPreflightChecker.h (249713 => 249714)
--- trunk/Source/WebKit/NetworkProcess/NetworkCORSPreflightChecker.h 2019-09-10 14:45:41 UTC (rev 249713)
+++ trunk/Source/WebKit/NetworkProcess/NetworkCORSPreflightChecker.h 2019-09-10 15:10:56 UTC (rev 249714)
@@ -26,6 +26,7 @@
#pragma once
#include "NetworkDataTask.h"
+#include "WebPageProxyIdentifier.h"
#include <WebCore/FrameIdentifier.h>
#include <WebCore/NetworkLoadInformation.h>
#include <WebCore/PageIdentifier.h>
Modified: trunk/Source/WebKit/NetworkProcess/NetworkLoadChecker.h (249713 => 249714)
--- trunk/Source/WebKit/NetworkProcess/NetworkLoadChecker.h 2019-09-10 14:45:41 UTC (rev 249713)
+++ trunk/Source/WebKit/NetworkProcess/NetworkLoadChecker.h 2019-09-10 15:10:56 UTC (rev 249714)
@@ -26,6 +26,7 @@
#pragma once
#include "UserContentControllerIdentifier.h"
+#include "WebPageProxyIdentifier.h"
#include <WebCore/ContentExtensionActions.h>
#include <WebCore/ContentSecurityPolicyResponseHeaders.h>
#include <WebCore/FetchOptions.h>