Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2164)

Unified Diff: Source/web/NavigatorContentUtilsClientImpl.cpp

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/NavigatorContentUtilsClientImpl.h ('k') | Source/web/NotificationPermissionClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/NavigatorContentUtilsClientImpl.cpp
diff --git a/Source/web/NavigatorContentUtilsClientImpl.cpp b/Source/web/NavigatorContentUtilsClientImpl.cpp
index 32a7d236fcf3fcdacfedbb4cedce8f2df42395af..22890fece7309cde5658f319ed40010daf058ad7 100644
--- a/Source/web/NavigatorContentUtilsClientImpl.cpp
+++ b/Source/web/NavigatorContentUtilsClientImpl.cpp
@@ -8,7 +8,7 @@
#include "public/web/WebViewClient.h"
#include "web/WebViewImpl.h"
-using namespace WebCore;
+using namespace blink;
namespace blink {
@@ -22,17 +22,17 @@ NavigatorContentUtilsClientImpl::NavigatorContentUtilsClientImpl(WebViewImpl* we
{
}
-void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& scheme, const WebCore::KURL& baseURL, const WebCore::KURL& url, const String& title)
+void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& scheme, const blink::KURL& baseURL, const blink::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)
+NavigatorContentUtilsClient::CustomHandlersState NavigatorContentUtilsClientImpl::isProtocolHandlerRegistered(const String& scheme, const blink::KURL& baseURL, const blink::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)
+void NavigatorContentUtilsClientImpl::unregisterProtocolHandler(const String& scheme, const blink::KURL& baseURL, const blink::KURL& url)
{
m_webView->client()->unregisterProtocolHandler(scheme, baseURL, url);
}
« no previous file with comments | « Source/web/NavigatorContentUtilsClientImpl.h ('k') | Source/web/NotificationPermissionClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698