Title: [288905] trunk/Source
Revision
288905
Author
[email protected]
Date
2022-02-01 12:32:31 -0800 (Tue, 01 Feb 2022)

Log Message

[GTK][WPE] Fixes for non-unified builds after r288807 and r288820
https://bugs.webkit.org/show_bug.cgi?id=235956

Reviewed by Mark Lam.

Source/_javascript_Core:

* runtime/FunctionHasExecutedCache.h:

Source/WebCore:

* bindings/js/ScriptModuleLoader.cpp:
(WebCore::rejectWithFetchError):

Source/WTF:

* wtf/GenericHashKey.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (288904 => 288905)


--- trunk/Source/_javascript_Core/ChangeLog	2022-02-01 19:59:24 UTC (rev 288904)
+++ trunk/Source/_javascript_Core/ChangeLog	2022-02-01 20:32:31 UTC (rev 288905)
@@ -1,3 +1,12 @@
+2022-02-01  Pablo Saavedra  <[email protected]>
+
+        [GTK][WPE] Fixes for non-unified builds after r288807 and r288820
+        https://bugs.webkit.org/show_bug.cgi?id=235956
+
+        Reviewed by Mark Lam.
+
+        * runtime/FunctionHasExecutedCache.h:
+
 2022-02-01  Commit Queue  <[email protected]>
 
         Unreviewed, reverting r288538.

Modified: trunk/Source/_javascript_Core/runtime/FunctionHasExecutedCache.h (288904 => 288905)


--- trunk/Source/_javascript_Core/runtime/FunctionHasExecutedCache.h	2022-02-01 19:59:24 UTC (rev 288904)
+++ trunk/Source/_javascript_Core/runtime/FunctionHasExecutedCache.h	2022-02-01 20:32:31 UTC (rev 288905)
@@ -27,6 +27,8 @@
 
 #include "SourceID.h"
 #include <wtf/GenericHashKey.h>
+#include <wtf/HashMap.h>
+#include <wtf/HashTraits.h>
 #include <wtf/Vector.h>
 
 namespace JSC {

Modified: trunk/Source/WTF/ChangeLog (288904 => 288905)


--- trunk/Source/WTF/ChangeLog	2022-02-01 19:59:24 UTC (rev 288904)
+++ trunk/Source/WTF/ChangeLog	2022-02-01 20:32:31 UTC (rev 288905)
@@ -1,3 +1,12 @@
+2022-02-01  Pablo Saavedra  <[email protected]>
+
+        [GTK][WPE] Fixes for non-unified builds after r288807 and r288820
+        https://bugs.webkit.org/show_bug.cgi?id=235956
+
+        Reviewed by Mark Lam.
+
+        * wtf/GenericHashKey.h:
+
 2022-02-01  Ben Nham  <[email protected]>
 
         Import APSConnection-related SPI

Modified: trunk/Source/WTF/wtf/GenericHashKey.h (288904 => 288905)


--- trunk/Source/WTF/wtf/GenericHashKey.h	2022-02-01 19:59:24 UTC (rev 288904)
+++ trunk/Source/WTF/wtf/GenericHashKey.h	2022-02-01 20:32:31 UTC (rev 288905)
@@ -27,6 +27,7 @@
 
 #include <variant>
 #include <wtf/Forward.h>
+#include <wtf/HashTraits.h>
 
 namespace WTF {
 

Modified: trunk/Source/WebCore/ChangeLog (288904 => 288905)


--- trunk/Source/WebCore/ChangeLog	2022-02-01 19:59:24 UTC (rev 288904)
+++ trunk/Source/WebCore/ChangeLog	2022-02-01 20:32:31 UTC (rev 288905)
@@ -1,3 +1,13 @@
+2022-02-01  Pablo Saavedra  <[email protected]>
+
+        [GTK][WPE] Fixes for non-unified builds after r288807 and r288820
+        https://bugs.webkit.org/show_bug.cgi?id=235956
+
+        Reviewed by Mark Lam.
+
+        * bindings/js/ScriptModuleLoader.cpp:
+        (WebCore::rejectWithFetchError):
+
 2022-02-01  Ryosuke Niwa  <[email protected]>
 
         Use more AtomString and un-inline code for ScriptElementCachedScriptFetcher and its subclasses

Modified: trunk/Source/WebCore/bindings/js/ScriptModuleLoader.cpp (288904 => 288905)


--- trunk/Source/WebCore/bindings/js/ScriptModuleLoader.cpp	2022-02-01 19:59:24 UTC (rev 288904)
+++ trunk/Source/WebCore/bindings/js/ScriptModuleLoader.cpp	2022-02-01 20:32:31 UTC (rev 288905)
@@ -159,7 +159,7 @@
     // Used to signal to the promise client that the failure was from a fetch, but not one that was propagated from another context.
     deferred.rejectWithCallback([&] (JSDOMGlobalObject& jsGlobalObject) {
         JSC::VM& vm = jsGlobalObject.vm();
-        JSC::JSObject* error = jsCast<JSObject*>(createDOMException(&jsGlobalObject, ec, message));
+        JSC::JSObject* error = jsCast<JSC::JSObject*>(createDOMException(&jsGlobalObject, ec, message));
         ASSERT(error);
         error->putDirect(vm, static_cast<JSVMClientData&>(*vm.clientData).builtinNames().failureKindPrivateName(), JSC::jsNumber(static_cast<int32_t>(ModuleFetchFailureKind::WasFetchError)));
         return error;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to