Changeset 221055 in webkit
- Timestamp:
- Aug 22, 2017, 4:15:05 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r221047 r221055 1 2017-08-22 Alex Christensen <achristensen@webkit.org> 2 3 Add UIDelegatePrivate SPI corresponding to WKPageUIClient.showPage 4 https://bugs.webkit.org/show_bug.cgi?id=175797 5 <rdar://problem/29270035> 6 7 Reviewed by Geoffrey Garen. 8 9 * UIProcess/API/Cocoa/WKUIDelegatePrivate.h: 10 * UIProcess/Cocoa/UIDelegate.h: 11 * UIProcess/Cocoa/UIDelegate.mm: 12 (WebKit::UIDelegate::setDelegate): 13 (WebKit::UIDelegate::UIClient::showPage): 14 * WebProcess/WebPage/WebPage.cpp: 15 (WebKit::WebPage::registerURLSchemeHandler): 16 window.open, createWebViewWithConfiguration, and WKURLSchemeHandlers all used together 17 make it so that URLSchemeHandlers are added to WebPages that already have them. The 18 assertions are no longer valid. 19 1 20 2017-08-22 Matt Lewis <jlewis3@apple.com> 2 21 -
trunk/Source/WebKit/UIProcess/API/Cocoa/WKUIDelegatePrivate.h
r221047 r221055 120 120 - (void)_webView:(WKWebView *)webView didChangeSafeAreaShouldAffectObscuredInsets:(BOOL)safeAreaShouldAffectObscuredInsets WK_API_AVAILABLE(ios(WK_IOS_TBA)); 121 121 #else 122 - (void)_webViewShow:(WKWebView *)webView WK_API_AVAILABLE(macosx(WK_MAC_TBA)); 122 123 - (NSMenu *)_webView:(WKWebView *)webView contextMenu:(NSMenu *)menu forElement:(_WKContextMenuElementInfo *)element WK_API_AVAILABLE(macosx(10.12)); 123 124 - (NSMenu *)_webView:(WKWebView *)webView contextMenu:(NSMenu *)menu forElement:(_WKContextMenuElementInfo *)element userInfo:(id <NSSecureCoding>)userInfo WK_API_AVAILABLE(macosx(10.12)); -
trunk/Source/WebKit/UIProcess/Cocoa/UIDelegate.h
r221047 r221055 80 80 private: 81 81 // API::UIClient 82 RefPtr<Web Kit::WebPageProxy> createNewPage(WebKit::WebPageProxy*, API::FrameInfo&, WebCore::ResourceRequest&&, const WebCore::WindowFeatures&, WebKit::NavigationActionData&&) override;83 void createNewPageAsync(Web Kit::WebPageProxy*, API::FrameInfo&, WebCore::ResourceRequest&&, const WebCore::WindowFeatures&, WebKit::NavigationActionData&&, WTF::Function<void(RefPtr<WebKit::WebPageProxy>&&)>&& completionHandler) final;82 RefPtr<WebPageProxy> createNewPage(WebPageProxy*, API::FrameInfo&, WebCore::ResourceRequest&&, const WebCore::WindowFeatures&, NavigationActionData&&) final; 83 void createNewPageAsync(WebPageProxy*, API::FrameInfo&, WebCore::ResourceRequest&&, const WebCore::WindowFeatures&, NavigationActionData&&, WTF::Function<void(RefPtr<WebPageProxy>&&)>&& completionHandler) final; 84 84 bool canCreateNewPageAsync() final; 85 RefPtr<Web Kit::WebPageProxy> createNewPageCommon(WebKit::WebPageProxy*, API::FrameInfo&, WebCore::ResourceRequest&&, const WebCore::WindowFeatures&, WebKit::NavigationActionData&&, WTF::Function<void(RefPtr<WebKit::WebPageProxy>&&)>&& completionHandler);85 RefPtr<WebPageProxy> createNewPageCommon(WebPageProxy*, API::FrameInfo&, WebCore::ResourceRequest&&, const WebCore::WindowFeatures&, NavigationActionData&&, WTF::Function<void(RefPtr<WebPageProxy>&&)>&& completionHandler); 86 86 87 87 void close(WebKit::WebPageProxy*) override; … … 97 97 void reachedApplicationCacheOriginQuota(WebPageProxy*, const WebCore::SecurityOrigin&, uint64_t currentQuota, uint64_t totalBytesNeeded, Function<void (unsigned long long)>&& completionHandler) override; 98 98 #if PLATFORM(MAC) 99 void showPage(WebPageProxy*) final; 99 100 bool runOpenPanel(WebPageProxy*, WebFrameProxy*, const WebCore::SecurityOriginData&, API::OpenPanelParameters*, WebOpenPanelResultListenerProxy*) override; 100 101 #endif … … 132 133 bool webViewCreateWebViewWithConfigurationForNavigationActionWindowFeatures : 1; 133 134 bool webViewCreateWebViewWithConfigurationForNavigationActionWindowFeaturesAsync : 1; 135 bool webViewShow : 1; 134 136 bool webViewRunJavaScriptAlertPanelWithMessageInitiatedByFrameCompletionHandler : 1; 135 137 bool webViewRunJavaScriptConfirmPanelWithMessageInitiatedByFrameCompletionHandler : 1; -
trunk/Source/WebKit/UIProcess/Cocoa/UIDelegate.mm
r221047 r221055 101 101 102 102 #if PLATFORM(MAC) 103 m_delegateMethods.webViewShow = [delegate respondsToSelector:@selector(_webViewShow:)]; 103 104 m_delegateMethods.webViewRunOpenPanelWithParametersInitiatedByFrameCompletionHandler = [delegate respondsToSelector:@selector(webView:runOpenPanelWithParameters:initiatedByFrame:completionHandler:)]; 104 105 #endif … … 372 373 373 374 #if PLATFORM(MAC) 375 void UIDelegate::UIClient::showPage(WebPageProxy*) 376 { 377 if (!m_uiDelegate.m_delegateMethods.webViewShow) 378 return; 379 380 auto delegate = m_uiDelegate.m_delegate.get(); 381 if (!delegate) 382 return; 383 384 [(id <WKUIDelegatePrivate>)delegate _webViewShow:m_uiDelegate.m_webView]; 385 } 386 374 387 bool UIDelegate::UIClient::runOpenPanel(WebPageProxy*, WebFrameProxy* webFrameProxy, const WebCore::SecurityOriginData& securityOriginData, API::OpenPanelParameters* openPanelParameters, WebOpenPanelResultListenerProxy* listener) 375 388 { -
trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp
r221047 r221055 5933 5933 { 5934 5934 auto schemeResult = m_schemeToURLSchemeHandlerProxyMap.add(scheme, WebURLSchemeHandlerProxy::create(*this, handlerIdentifier)); 5935 ASSERT(schemeResult.isNewEntry); 5936 5937 auto identifierResult = m_identifierToURLSchemeHandlerProxyMap.add(handlerIdentifier, schemeResult.iterator->value.get()); 5938 ASSERT_UNUSED(identifierResult, identifierResult.isNewEntry); 5935 m_identifierToURLSchemeHandlerProxyMap.add(handlerIdentifier, schemeResult.iterator->value.get()); 5939 5936 } 5940 5937 -
trunk/Tools/ChangeLog
r221049 r221055 1 2017-08-22 Alex Christensen <achristensen@webkit.org> 2 3 Add UIDelegatePrivate SPI corresponding to WKPageUIClient.showPage 4 https://bugs.webkit.org/show_bug.cgi?id=175797 5 <rdar://problem/29270035> 6 7 Reviewed by Geoffrey Garen. 8 9 * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: 10 * TestWebKitAPI/Tests/WebKit2Cocoa/UIDelegate.mm: Added. 11 (-[UITestDelegate webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:]): 12 (-[UITestDelegate _showPage:]): 13 (-[UITestDelegate webView:startURLSchemeTask:]): 14 (-[UITestDelegate webView:stopURLSchemeTask:]): 15 (TEST): 16 1 17 2017-08-22 Devin Rousso <webkit@devinrousso.com> 2 18 -
trunk/Tools/TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj
r221047 r221055 233 233 5C9E59421D3EB5AC00E3C62E /* ApplicationCache.db-shm in Copy Resources */ = {isa = PBXBuildFile; fileRef = 5C9E593F1D3EB1DE00E3C62E /* ApplicationCache.db-shm */; }; 234 234 5C9E59431D3EB5AC00E3C62E /* ApplicationCache.db-wal in Copy Resources */ = {isa = PBXBuildFile; fileRef = 5C9E59401D3EB1DE00E3C62E /* ApplicationCache.db-wal */; }; 235 5CB40B4E1F4B98D3007DC7B9 /* UIDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5CB40B4D1F4B98BE007DC7B9 /* UIDelegate.mm */; }; 235 236 5CE354D91E70DA5C00BEFE3B /* WKContentExtensionStore.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5CE354D81E70D9C300BEFE3B /* WKContentExtensionStore.mm */; }; 236 237 5E4B1D2E1D404C6100053621 /* WKScrollViewDelegateCrash.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5E4B1D2C1D404C6100053621 /* WKScrollViewDelegateCrash.mm */; }; … … 1304 1305 5C9E593F1D3EB1DE00E3C62E /* ApplicationCache.db-shm */ = {isa = PBXFileReference; lastKnownFileType = file; path = "ApplicationCache.db-shm"; sourceTree = "<group>"; }; 1305 1306 5C9E59401D3EB1DE00E3C62E /* ApplicationCache.db-wal */ = {isa = PBXFileReference; lastKnownFileType = file; path = "ApplicationCache.db-wal"; sourceTree = "<group>"; }; 1307 5CB40B4D1F4B98BE007DC7B9 /* UIDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = UIDelegate.mm; sourceTree = "<group>"; }; 1306 1308 5CE354D81E70D9C300BEFE3B /* WKContentExtensionStore.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WKContentExtensionStore.mm; sourceTree = "<group>"; }; 1307 1309 5E4B1D2C1D404C6100053621 /* WKScrollViewDelegateCrash.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = WKScrollViewDelegateCrash.mm; path = ../ios/WKScrollViewDelegateCrash.mm; sourceTree = "<group>"; }; … … 1942 1944 2DFF7B6C1DA487AF00814614 /* SnapshotStore.mm */, 1943 1945 515BE1701D428BD100DD7C68 /* StoreBlobThenDelete.mm */, 1946 5CB40B4D1F4B98BE007DC7B9 /* UIDelegate.mm */, 1944 1947 7CC3E1FA197E234100BE6252 /* UserContentController.mm */, 1945 1948 7C882E031C80C624006BF731 /* UserContentWorld.mm */, … … 3214 3217 46C519DA1D355AB200DAA51A /* LocalStorageNullEntries.mm in Sources */, 3215 3218 7A6A2C701DCCFA8C00C0D085 /* LocalStorageQuirkTest.mm in Sources */, 3219 076E507F1F4513D6006E9F5A /* Logging.cpp in Sources */, 3216 3220 CDA315981ED53651009F60D3 /* MediaPlaybackSleepAssertion.mm in Sources */, 3217 3221 CDC9442E1EF1FC080059C3C4 /* MediaStreamTrackDetached.mm in Sources */, … … 3258 3262 7CCE7F0C1A411AE600447C4C /* PrivateBrowsingPushStateNoHistoryCallback.cpp in Sources */, 3259 3263 4647B1261EBA3B850041D7EF /* ProcessDidTerminate.cpp in Sources */, 3260 076E507F1F4513D6006E9F5A /* Logging.cpp in Sources */,3261 3264 7C83E0C11D0A652F00FEBCF3 /* ProvisionalURLNotChange.mm in Sources */, 3262 3265 7CCE7EC81A411A7E00447C4C /* PublicSuffix.mm in Sources */, … … 3313 3316 7CCE7EDD1A411A9200447C4C /* TimeRanges.cpp in Sources */, 3314 3317 7CCE7ED31A411A7E00447C4C /* TypingStyleCrash.mm in Sources */, 3318 5CB40B4E1F4B98D3007DC7B9 /* UIDelegate.mm in Sources */, 3315 3319 F46849BE1EEF58E400B937FE /* UIPasteboardTests.mm in Sources */, 3316 3320 7CCE7EDE1A411A9200447C4C /* URL.cpp in Sources */,
Note:
See TracChangeset
for help on using the changeset viewer.