Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (259552 => 259553)
--- trunk/Source/_javascript_Core/ChangeLog 2020-04-05 18:11:30 UTC (rev 259552)
+++ trunk/Source/_javascript_Core/ChangeLog 2020-04-05 18:21:01 UTC (rev 259553)
@@ -1,3 +1,11 @@
+2020-04-05 Zan Dobersek <[email protected]>
+
+ Unreviewed, adding missing header inclusions to get
+ non-unified build building.
+
+ * heap/HeapSnapshotBuilder.h:
+ * tools/Integrity.h:
+
2020-04-05 Mark Lam <[email protected]>
Change s_entropyBitsShiftForStructurePointer to 48 bits.
Modified: trunk/Source/_javascript_Core/heap/HeapSnapshotBuilder.h (259552 => 259553)
--- trunk/Source/_javascript_Core/heap/HeapSnapshotBuilder.h 2020-04-05 18:11:30 UTC (rev 259552)
+++ trunk/Source/_javascript_Core/heap/HeapSnapshotBuilder.h 2020-04-05 18:21:01 UTC (rev 259553)
@@ -27,6 +27,8 @@
#include "HeapAnalyzer.h"
#include <functional>
+#include <wtf/HashMap.h>
+#include <wtf/HashSet.h>
#include <wtf/Lock.h>
#include <wtf/Vector.h>
Modified: trunk/Source/_javascript_Core/tools/Integrity.h (259552 => 259553)
--- trunk/Source/_javascript_Core/tools/Integrity.h 2020-04-05 18:11:30 UTC (rev 259552)
+++ trunk/Source/_javascript_Core/tools/Integrity.h 2020-04-05 18:21:01 UTC (rev 259553)
@@ -26,6 +26,7 @@
#pragma once
#include "JSCJSValue.h"
+#include "StructureIDTable.h"
#include <wtf/Gigacage.h>
#include <wtf/Lock.h>
@@ -32,7 +33,6 @@
namespace JSC {
class JSCell;
-class StructureIDTable;
class VM;
namespace Integrity {
Modified: trunk/Source/WebCore/ChangeLog (259552 => 259553)
--- trunk/Source/WebCore/ChangeLog 2020-04-05 18:11:30 UTC (rev 259552)
+++ trunk/Source/WebCore/ChangeLog 2020-04-05 18:21:01 UTC (rev 259553)
@@ -1,3 +1,12 @@
+2020-04-05 Zan Dobersek <[email protected]>
+
+ Unreviewed, adding missing header inclusions to get
+ non-unified build building.
+
+ * html/HTMLCanvasElement.cpp:
+ * loader/ResourceLoadNotifier.h:
+ * workers/service/ServiceWorkerProvider.h:
+
2020-04-05 Wenson Hsieh <[email protected]>
[iOS] Ugly and misaligned form validation bubble
Modified: trunk/Source/WebCore/html/HTMLCanvasElement.cpp (259552 => 259553)
--- trunk/Source/WebCore/html/HTMLCanvasElement.cpp 2020-04-05 18:11:30 UTC (rev 259552)
+++ trunk/Source/WebCore/html/HTMLCanvasElement.cpp 2020-04-05 18:21:01 UTC (rev 259553)
@@ -35,6 +35,7 @@
#include "CanvasRenderingContext2D.h"
#include "DisplayListDrawingContext.h"
#include "Document.h"
+#include "EventNames.h"
#include "Frame.h"
#include "FrameLoaderClient.h"
#include "GPUBasedCanvasRenderingContext.h"
Modified: trunk/Source/WebCore/loader/ResourceLoadNotifier.h (259552 => 259553)
--- trunk/Source/WebCore/loader/ResourceLoadNotifier.h 2020-04-05 18:11:30 UTC (rev 259552)
+++ trunk/Source/WebCore/loader/ResourceLoadNotifier.h 2020-04-05 18:21:01 UTC (rev 259553)
@@ -30,6 +30,7 @@
#pragma once
#include <wtf/Noncopyable.h>
+#include <wtf/Optional.h>
namespace WebCore {
Modified: trunk/Source/WebCore/workers/service/ServiceWorkerProvider.h (259552 => 259553)
--- trunk/Source/WebCore/workers/service/ServiceWorkerProvider.h 2020-04-05 18:11:30 UTC (rev 259552)
+++ trunk/Source/WebCore/workers/service/ServiceWorkerProvider.h 2020-04-05 18:21:01 UTC (rev 259553)
@@ -27,6 +27,8 @@
#if ENABLE(SERVICE_WORKER)
+#include "ServiceWorkerIdentifier.h"
+
namespace WebCore {
class SWClientConnection;
Modified: trunk/Source/WebKit/ChangeLog (259552 => 259553)
--- trunk/Source/WebKit/ChangeLog 2020-04-05 18:11:30 UTC (rev 259552)
+++ trunk/Source/WebKit/ChangeLog 2020-04-05 18:21:01 UTC (rev 259553)
@@ -1,3 +1,10 @@
+2020-04-05 Zan Dobersek <[email protected]>
+
+ Unreviewed, adding missing header inclusions to get
+ non-unified build building.
+
+ * Shared/UserContentControllerParameters.cpp:
+
2020-04-04 Wenson Hsieh <[email protected]>
Add a fourth round of logging to help diagnose <webkit.org/b/209685>
Modified: trunk/Source/WebKit/Shared/UserContentControllerParameters.cpp (259552 => 259553)
--- trunk/Source/WebKit/Shared/UserContentControllerParameters.cpp 2020-04-05 18:11:30 UTC (rev 259552)
+++ trunk/Source/WebKit/Shared/UserContentControllerParameters.cpp 2020-04-05 18:21:01 UTC (rev 259553)
@@ -26,6 +26,7 @@
#include "config.h"
#include "UserContentControllerParameters.h"
+#include "ArgumentCoders.h"
#include "Decoder.h"
#include "Encoder.h"