Changeset 251698 in webkit


Ignore:
Timestamp:
Oct 29, 2019 7:36:32 AM (4 years ago)
Author:
Adrian Perez de Castro
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().

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r251697 r251698  
     12019-10-29  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [GTK][WPE] Fix non-unified build after r251691
     4        https://bugs.webkit.org/show_bug.cgi?id=203556
     5
     6        Reviewed by Žan Doberšek.
     7
     8        No new tests needed.
     9
     10        * bindings/js/ScriptModuleLoader.cpp:
     11        (WebCore::rejectPromise): Add missing namespace in call to JSC::JSInternalPromise::create().
     12
    1132019-10-29  Peng Liu  <peng.liu6@apple.com>
    214
  • trunk/Source/WebCore/bindings/js/ScriptModuleLoader.cpp

    r251691 r251698  
    216216static JSC::JSInternalPromise* rejectPromise(JSDOMGlobalObject& globalObject, ExceptionCode ec, ASCIILiteral message)
    217217{
    218     auto* jsPromise = JSInternalPromise::create(globalObject.vm(), globalObject.internalPromiseStructure());
     218    auto* jsPromise = JSC::JSInternalPromise::create(globalObject.vm(), globalObject.internalPromiseStructure());
    219219    RELEASE_ASSERT(jsPromise);
    220220    auto deferred = DeferredPromise::create(globalObject, *jsPromise);
Note: See TracChangeset for help on using the changeset viewer.