Chromium Code Reviews| 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*); |