Title: [251698] trunk/Source/WebCore
Revision
251698
Author
[email protected]
Date
2019-10-29 07:36:32 -0700 (Tue, 29 Oct 2019)

Log Message

[GTK][WPE] Fix non-unified build after r251691
https://bugs.webkit.org/show_bug.cgi?id=203556

Reviewed by Žan Doberšek.

No new tests needed.

* bindings/js/ScriptModuleLoader.cpp:
(WebCore::rejectPromise): Add missing namespace in call to JSC::JSInternalPromise::create().

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (251697 => 251698)


--- trunk/Source/WebCore/ChangeLog	2019-10-29 14:22:47 UTC (rev 251697)
+++ trunk/Source/WebCore/ChangeLog	2019-10-29 14:36:32 UTC (rev 251698)
@@ -1,3 +1,15 @@
+2019-10-29  Adrian Perez de Castro  <[email protected]>
+
+        [GTK][WPE] Fix non-unified build after r251691
+        https://bugs.webkit.org/show_bug.cgi?id=203556
+
+        Reviewed by Žan Doberšek.
+
+        No new tests needed.
+
+        * bindings/js/ScriptModuleLoader.cpp:
+        (WebCore::rejectPromise): Add missing namespace in call to JSC::JSInternalPromise::create().
+
 2019-10-29  Peng Liu  <[email protected]>
 
         [Picture-in-Picture Web API] Synchronize the attributes and properties of HTMLVideoElementPictureInPicture

Modified: trunk/Source/WebCore/bindings/js/ScriptModuleLoader.cpp (251697 => 251698)


--- trunk/Source/WebCore/bindings/js/ScriptModuleLoader.cpp	2019-10-29 14:22:47 UTC (rev 251697)
+++ trunk/Source/WebCore/bindings/js/ScriptModuleLoader.cpp	2019-10-29 14:36:32 UTC (rev 251698)
@@ -215,7 +215,7 @@
 
 static JSC::JSInternalPromise* rejectPromise(JSDOMGlobalObject& globalObject, ExceptionCode ec, ASCIILiteral message)
 {
-    auto* jsPromise = JSInternalPromise::create(globalObject.vm(), globalObject.internalPromiseStructure());
+    auto* jsPromise = JSC::JSInternalPromise::create(globalObject.vm(), globalObject.internalPromiseStructure());
     RELEASE_ASSERT(jsPromise);
     auto deferred = DeferredPromise::create(globalObject, *jsPromise);
     deferred->reject(ec, WTFMove(message));
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to