⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 244565 in webkit


Ignore:
Timestamp:
Apr 23, 2019, 1:52:31 PM (7 years ago)
Author:
achristensen@apple.com
Message:

Fix iOS build.
https://bugs.webkit.org/show_bug.cgi?id=195537

  • WebKitTestRunner/InjectedBundle/TestRunner.cpp:

(WTR::TestRunner::setOpenPanelFilesMediaIcon):
AdoptWK constructor is private now. Use adoptWK instead.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r244561 r244565  
     12019-04-23  Alex Christensen  <achristensen@webkit.org>
     2
     3        Fix iOS build.
     4        https://bugs.webkit.org/show_bug.cgi?id=195537
     5
     6        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
     7        (WTR::TestRunner::setOpenPanelFilesMediaIcon):
     8        AdoptWK constructor is private now.  Use adoptWK instead.
     9
    1102019-04-23  Andres Gonzalez  <andresg_22@apple.com>
    211
  • trunk/Tools/WebKitTestRunner/InjectedBundle/TestRunner.cpp

    r244557 r244565  
    24542454    auto& injectedBundle = InjectedBundle::singleton();
    24552455    // FIXME (123058): Use a JSC API to get buffer contents once such is exposed.
    2456     WKRetainPtr<WKDataRef> iconData(AdoptWK, WKBundleCreateWKDataFromUInt8Array(injectedBundle.bundle(), context, data));
     2456    WKRetainPtr<WKDataRef> iconData = adoptWK(WKBundleCreateWKDataFromUInt8Array(injectedBundle.bundle(), context, data));
    24572457
    24582458    static auto messageName = adoptWK(WKStringCreateWithUTF8CString("SetOpenPanelFileURLsMediaIcon"));
Note: See TracChangeset for help on using the changeset viewer.