| Index: Source/web/NavigatorContentUtilsClientImpl.cpp
|
| diff --git a/Source/web/NavigatorContentUtilsClientImpl.cpp b/Source/web/NavigatorContentUtilsClientImpl.cpp
|
| index a5b37553c3cfc048298eb584b48e089921311249..d904a996bbc2828a0ea4649ca5e5054974de4eb8 100644
|
| --- a/Source/web/NavigatorContentUtilsClientImpl.cpp
|
| +++ b/Source/web/NavigatorContentUtilsClientImpl.cpp
|
| @@ -20,19 +20,19 @@ NavigatorContentUtilsClientImpl::NavigatorContentUtilsClientImpl(WebViewImpl* we
|
| {
|
| }
|
|
|
| -void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& scheme, const KURL& baseURL, const KURL& url, const String& title)
|
| +void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& scheme, const KURL& url, const String& title)
|
| {
|
| - m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title);
|
| + m_webView->client()->registerProtocolHandler(scheme, url, title);
|
| }
|
|
|
| -NavigatorContentUtilsClient::CustomHandlersState NavigatorContentUtilsClientImpl::isProtocolHandlerRegistered(const String& scheme, const KURL& baseURL, const KURL& url)
|
| +NavigatorContentUtilsClient::CustomHandlersState NavigatorContentUtilsClientImpl::isProtocolHandlerRegistered(const String& scheme, const KURL& url)
|
| {
|
| - return static_cast<NavigatorContentUtilsClient::CustomHandlersState>(m_webView->client()->isProtocolHandlerRegistered(scheme, baseURL, url));
|
| + return static_cast<NavigatorContentUtilsClient::CustomHandlersState>(m_webView->client()->isProtocolHandlerRegistered(scheme, url));
|
| }
|
|
|
| -void NavigatorContentUtilsClientImpl::unregisterProtocolHandler(const String& scheme, const KURL& baseURL, const KURL& url)
|
| +void NavigatorContentUtilsClientImpl::unregisterProtocolHandler(const String& scheme, const KURL& url)
|
| {
|
| - m_webView->client()->unregisterProtocolHandler(scheme, baseURL, url);
|
| + m_webView->client()->unregisterProtocolHandler(scheme, url);
|
| }
|
|
|
| } // namespace blink
|
|
|