summaryrefslogtreecommitdiff
path: root/Source/WebKit2/WebProcess/WebCoreSupport/WebRegisterProtocolHandlerClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit2/WebProcess/WebCoreSupport/WebRegisterProtocolHandlerClient.h')
-rw-r--r--Source/WebKit2/WebProcess/WebCoreSupport/WebRegisterProtocolHandlerClient.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/WebKit2/WebProcess/WebCoreSupport/WebRegisterProtocolHandlerClient.h b/Source/WebKit2/WebProcess/WebCoreSupport/WebRegisterProtocolHandlerClient.h
index 7019747b9..63f199098 100644
--- a/Source/WebKit2/WebProcess/WebCoreSupport/WebRegisterProtocolHandlerClient.h
+++ b/Source/WebKit2/WebProcess/WebCoreSupport/WebRegisterProtocolHandlerClient.h
@@ -26,6 +26,8 @@
#ifndef WebRegisterProtocolHandlerClient_h
#define WebRegisterProtocolHandlerClient_h
+#if ENABLE(REGISTER_PROTOCOL_HANDLER)
+
#include <WebCore/RegisterProtocolHandlerClient.h>
#include <wtf/text/WTFString.h>
@@ -36,9 +38,7 @@ public:
virtual ~WebRegisterProtocolHandlerClient() { }
private:
-#if ENABLE(REGISTER_PROTOCOL_HANDLER)
virtual void registerProtocolHandler(const String& scheme, const String& baseURL, const String& url, const String& title) OVERRIDE { }
-#endif
#if ENABLE(CUSTOM_SCHEME_HANDLER)
virtual CustomHandlersState isProtocolHandlerRegistered(const String&, const String&, const String&) { return CustomHandlersDeclined; }
@@ -48,4 +48,5 @@ private:
}
+#endif // ENABLE(REGISTER_PROTOCOL_HANDLER)
#endif // WebRegisterProtocolHandlerClient_h