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

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
Index: Source/web/ChromeClientImpl.h
diff --git a/Source/web/ChromeClientImpl.h b/Source/web/ChromeClientImpl.h
index d315694e59bb77ceb98c40536ad8d344b6a0869a..7823bb3d8277919a6cc31f9365f82e67553f7d19 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/21 17:10:19 Please do not add any more ENABLE #if statements t
gyuyoung-inactive 2013/08/22 01:12:38 Abarth, I upload a patch to remove all ENABLE(CUST
+ virtual 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*);

Powered by Google App Engine
This is Rietveld 408576698