Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1257)

Unified Diff: Source/web/ChromeClientImpl.h

Issue 22871006: Implement unregisterProtocolHandler() function on CUSTOM_SCHEME_HANDLER (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/fast/dom/unregister-protocol-handler.html ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ChromeClientImpl.h
diff --git a/Source/web/ChromeClientImpl.h b/Source/web/ChromeClientImpl.h
index 639e9d9550b9e16372a3dfb97afff3f407d14e3f..49623ed607e7d9b0246fb9e874e4d95832972e28 100644
--- a/Source/web/ChromeClientImpl.h
+++ b/Source/web/ChromeClientImpl.h
@@ -208,6 +208,10 @@ public:
~NavigatorContentUtilsClientImpl() { }
virtual void registerProtocolHandler(const String& scheme, const String& baseURL, const String& url, const String& title) OVERRIDE;
+#if ENABLE(CUSTOM_SCHEME_HANDLER)
abarth-chromium 2013/08/15 20:05:49 We no longer use #ifdefs to scope in-progress feat
gyuyoung-inactive 2013/08/16 07:07:13 Thank you for pointing it out. I try to use Runtim
+ CustomHandlersState isProtocolHandlerRegistered(const String& scheme, const String& baseURL, const String& url) OVERRIDE;
+ virtual void unregisterProtocolHandler(const String& scheme, const String& baseURL, const String& url) OVERRIDE;
+#endif
private:
explicit NavigatorContentUtilsClientImpl(WebViewImpl*);
« no previous file with comments | « LayoutTests/fast/dom/unregister-protocol-handler.html ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698