Changeset 244565 in webkit
- Timestamp:
- Apr 23, 2019, 1:52:31 PM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebKitTestRunner/InjectedBundle/TestRunner.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r244561 r244565 1 2019-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 1 10 2019-04-23 Andres Gonzalez <andresg_22@apple.com> 2 11 -
trunk/Tools/WebKitTestRunner/InjectedBundle/TestRunner.cpp
r244557 r244565 2454 2454 auto& injectedBundle = InjectedBundle::singleton(); 2455 2455 // 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)); 2457 2457 2458 2458 static auto messageName = adoptWK(WKStringCreateWithUTF8CString("SetOpenPanelFileURLsMediaIcon"));
Note:
See TracChangeset
for help on using the changeset viewer.