Index: Source/web/NavigatorContentUtilsClientImpl.h |
diff --git a/Source/web/NavigatorContentUtilsClientImpl.h b/Source/web/NavigatorContentUtilsClientImpl.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..58b21b31ad0361f89dcf8a44fb796299d8cf7a6e |
--- /dev/null |
+++ b/Source/web/NavigatorContentUtilsClientImpl.h |
@@ -0,0 +1,32 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef NavigatorContentUtilsClientImpl_h |
+#define NavigatorContentUtilsClientImpl_h |
+ |
+#include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h" |
+#include "platform/weborigin/KURL.h" |
+ |
+namespace blink { |
+ |
+class WebViewImpl; |
+ |
+class NavigatorContentUtilsClientImpl FINAL : public WebCore::NavigatorContentUtilsClient { |
+public: |
+ static PassOwnPtr<NavigatorContentUtilsClientImpl> create(WebViewImpl*); |
+ virtual ~NavigatorContentUtilsClientImpl() { } |
+ |
+ virtual void registerProtocolHandler(const String& scheme, const WebCore::KURL& baseURL, const WebCore::KURL&, const String& title) OVERRIDE; |
+ virtual CustomHandlersState isProtocolHandlerRegistered(const String& scheme, const WebCore::KURL& baseURL, const WebCore::KURL&) OVERRIDE; |
+ virtual void unregisterProtocolHandler(const String& scheme, const WebCore::KURL& baseURL, const WebCore::KURL&) OVERRIDE; |
+ |
+private: |
+ explicit NavigatorContentUtilsClientImpl(WebViewImpl*); |
+ |
+ WebViewImpl* m_webView; |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // NavigatorContentUtilsClientImpl_h |