| Index: Source/web/ChromeClientImpl.cpp | 
| diff --git a/Source/web/ChromeClientImpl.cpp b/Source/web/ChromeClientImpl.cpp | 
| index 79041e94c004160aea726ac0243ce11d6dfcae63..d28a37464f881b2e462ae7073a5d69533cdf0990 100644 | 
| --- a/Source/web/ChromeClientImpl.cpp | 
| +++ b/Source/web/ChromeClientImpl.cpp | 
| @@ -887,30 +887,4 @@ bool ChromeClientImpl::usesGpuRasterization() | 
| return m_webView->layerTreeView()->usesGpuRasterization(); | 
| } | 
|  | 
| -PassOwnPtr<NavigatorContentUtilsClientImpl> NavigatorContentUtilsClientImpl::create(WebViewImpl* webView) | 
| -{ | 
| -    return adoptPtr(new NavigatorContentUtilsClientImpl(webView)); | 
| -} | 
| - | 
| -NavigatorContentUtilsClientImpl::NavigatorContentUtilsClientImpl(WebViewImpl* webView) | 
| -    : m_webView(webView) | 
| -{ | 
| -} | 
| - | 
| -void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& scheme, const WebCore::KURL& baseURL, const WebCore::KURL& url, const String& title) | 
| -{ | 
| -    m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title); | 
| -} | 
| - | 
| -NavigatorContentUtilsClient::CustomHandlersState NavigatorContentUtilsClientImpl::isProtocolHandlerRegistered(const String& scheme, const WebCore::KURL& baseURL, const WebCore::KURL& url) | 
| -{ | 
| -    return static_cast<NavigatorContentUtilsClient::CustomHandlersState>(m_webView->client()->isProtocolHandlerRegistered(scheme, baseURL, url)); | 
| -} | 
| - | 
| -void NavigatorContentUtilsClientImpl::unregisterProtocolHandler(const String& scheme, const WebCore::KURL& baseURL, const WebCore::KURL& url) | 
| -{ | 
| -    m_webView->client()->unregisterProtocolHandler(scheme, baseURL, url); | 
| -} | 
| - | 
| - | 
| } // namespace blink | 
|  |