Title: [286946] trunk/Source
Revision
286946
Author
ape...@igalia.com
Date
2021-12-13 05:42:48 -0800 (Mon, 13 Dec 2021)

Log Message

Unreviewed build fix after r286936

Source/_javascript_Core:

* wasm/WasmOSREntryData.h: Replace wrong inclusion of wtf/Vector.h (unused) with the correct
wtf/FixedVector.h one.
* wasm/WasmTierUpCount.h: Add missing WasmOSREntryData.h inclusion.

Source/WebKit:

No new tests needed.

* NetworkProcess/storage/OriginStorageManager.cpp: Add missing inclusion of
MemoryStorageArea.h, which broke non-unified builds.
* NetworkProcess/storage/SQLiteStorageArea.cpp: Add missing inclusion of Logging.h, broke
the build in some configurations.
* NetworkProcess/storage/SessionStorageManager.h: Add missing inclusion of Connection.h, and
add missing forward declaration for WebCore::ClientOrigin, which broke the build for
non-Apple ports.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (286945 => 286946)


--- trunk/Source/_javascript_Core/ChangeLog	2021-12-13 10:49:41 UTC (rev 286945)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-12-13 13:42:48 UTC (rev 286946)
@@ -1,3 +1,11 @@
+2021-12-13  Adrian Perez de Castro  <ape...@igalia.com>
+
+        Unreviewed build fix after r286936
+
+        * wasm/WasmOSREntryData.h: Replace wrong inclusion of wtf/Vector.h (unused) with the correct
+        wtf/FixedVector.h one.
+        * wasm/WasmTierUpCount.h: Add missing WasmOSREntryData.h inclusion.
+
 2021-12-13  Zan Dobersek  <zdober...@igalia.com>
 
         [RISCV64] Add MacroAssemblerRISCV64 implementations for trivial floating-point-register operations

Modified: trunk/Source/_javascript_Core/wasm/WasmOSREntryData.h (286945 => 286946)


--- trunk/Source/_javascript_Core/wasm/WasmOSREntryData.h	2021-12-13 10:49:41 UTC (rev 286945)
+++ trunk/Source/_javascript_Core/wasm/WasmOSREntryData.h	2021-12-13 13:42:48 UTC (rev 286946)
@@ -29,7 +29,7 @@
 
 #include "B3Type.h"
 #include "B3ValueRep.h"
-#include <wtf/Vector.h>
+#include <wtf/FixedVector.h>
 
 namespace JSC { namespace Wasm {
 

Modified: trunk/Source/_javascript_Core/wasm/WasmTierUpCount.h (286945 => 286946)


--- trunk/Source/_javascript_Core/wasm/WasmTierUpCount.h	2021-12-13 10:49:41 UTC (rev 286945)
+++ trunk/Source/_javascript_Core/wasm/WasmTierUpCount.h	2021-12-13 13:42:48 UTC (rev 286946)
@@ -30,6 +30,7 @@
 #include "CompilationResult.h"
 #include "ExecutionCounter.h"
 #include "Options.h"
+#include "WasmOSREntryData.h"
 #include <wtf/Atomics.h>
 #include <wtf/SegmentedVector.h>
 #include <wtf/StdLibExtras.h>

Modified: trunk/Source/WebKit/ChangeLog (286945 => 286946)


--- trunk/Source/WebKit/ChangeLog	2021-12-13 10:49:41 UTC (rev 286945)
+++ trunk/Source/WebKit/ChangeLog	2021-12-13 13:42:48 UTC (rev 286946)
@@ -1,3 +1,17 @@
+2021-12-13  Adrian Perez de Castro  <ape...@igalia.com>
+
+        Unreviewed build fix after r286936
+
+        No new tests needed.
+
+        * NetworkProcess/storage/OriginStorageManager.cpp: Add missing inclusion of
+        MemoryStorageArea.h, which broke non-unified builds.
+        * NetworkProcess/storage/SQLiteStorageArea.cpp: Add missing inclusion of Logging.h, broke
+        the build in some configurations.
+        * NetworkProcess/storage/SessionStorageManager.h: Add missing inclusion of Connection.h, and
+        add missing forward declaration for WebCore::ClientOrigin, which broke the build for
+        non-Apple ports.
+
 2021-12-13  Youenn Fablet  <you...@apple.com>
 
         Fix ServiceWorker downloads

Modified: trunk/Source/WebKit/NetworkProcess/storage/OriginStorageManager.cpp (286945 => 286946)


--- trunk/Source/WebKit/NetworkProcess/storage/OriginStorageManager.cpp	2021-12-13 10:49:41 UTC (rev 286945)
+++ trunk/Source/WebKit/NetworkProcess/storage/OriginStorageManager.cpp	2021-12-13 13:42:48 UTC (rev 286946)
@@ -29,6 +29,7 @@
 #include "FileSystemStorageHandleRegistry.h"
 #include "FileSystemStorageManager.h"
 #include "LocalStorageManager.h"
+#include "MemoryStorageArea.h"
 #include "SessionStorageManager.h"
 #include "StorageAreaRegistry.h"
 #include "WebsiteDataType.h"

Modified: trunk/Source/WebKit/NetworkProcess/storage/SQLiteStorageArea.cpp (286945 => 286946)


--- trunk/Source/WebKit/NetworkProcess/storage/SQLiteStorageArea.cpp	2021-12-13 10:49:41 UTC (rev 286945)
+++ trunk/Source/WebKit/NetworkProcess/storage/SQLiteStorageArea.cpp	2021-12-13 13:42:48 UTC (rev 286946)
@@ -26,6 +26,7 @@
 #include "config.h"
 #include "SQLiteStorageArea.h"
 
+#include "Logging.h"
 #include <WebCore/SQLiteFileSystem.h>
 #include <WebCore/SQLiteStatement.h>
 #include <WebCore/SQLiteTransaction.h>

Modified: trunk/Source/WebKit/NetworkProcess/storage/SessionStorageManager.h (286945 => 286946)


--- trunk/Source/WebKit/NetworkProcess/storage/SessionStorageManager.h	2021-12-13 10:49:41 UTC (rev 286945)
+++ trunk/Source/WebKit/NetworkProcess/storage/SessionStorageManager.h	2021-12-13 13:42:48 UTC (rev 286946)
@@ -25,9 +25,14 @@
 
 #pragma once
 
+#include "Connection.h"
 #include "StorageAreaIdentifier.h"
 #include "StorageNamespaceIdentifier.h"
 
+namespace WebCore {
+class ClientOrigin;
+} // namespace WebCore
+
 namespace WebKit {
 
 class MemoryStorageArea;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to