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

Unified Diff: Source/modules/navigatorcontentutils/testing/NavigatorContentUtilsClientMock.cpp

Issue 469773002: Cleanup blink:: prefix usage in Source/core/modules/[mediasource/*.cpp to websockets/*.cpp] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/modules/mediastream/UserMediaRequest.cpp ('k') | Source/modules/netinfo/NetworkInformation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/navigatorcontentutils/testing/NavigatorContentUtilsClientMock.cpp
diff --git a/Source/modules/navigatorcontentutils/testing/NavigatorContentUtilsClientMock.cpp b/Source/modules/navigatorcontentutils/testing/NavigatorContentUtilsClientMock.cpp
index ca73bcd0c651da27b15051382909e3838ddf7ac0..1319a3d2910330214642289fd1f6141aa8290eda 100644
--- a/Source/modules/navigatorcontentutils/testing/NavigatorContentUtilsClientMock.cpp
+++ b/Source/modules/navigatorcontentutils/testing/NavigatorContentUtilsClientMock.cpp
@@ -11,8 +11,8 @@
namespace blink {
-void NavigatorContentUtilsClientMock::registerProtocolHandler(const String& scheme, const blink::KURL& baseURL,
- const blink::KURL& url, const String& title)
+void NavigatorContentUtilsClientMock::registerProtocolHandler(const String& scheme, const KURL& baseURL,
+ const KURL& url, const String& title)
{
ProtocolInfo info;
info.scheme = scheme;
@@ -24,7 +24,7 @@ void NavigatorContentUtilsClientMock::registerProtocolHandler(const String& sche
}
NavigatorContentUtilsClient::CustomHandlersState NavigatorContentUtilsClientMock::isProtocolHandlerRegistered(const String& scheme,
- const blink::KURL& baseURL, const blink::KURL& url)
+ const KURL& baseURL, const KURL& url)
{
// "declined" state is checked by NavigatorContentUtils::isProtocolHandlerRegistered() before calling this function.
if (m_protocolMap.contains(scheme))
@@ -33,8 +33,8 @@ NavigatorContentUtilsClient::CustomHandlersState NavigatorContentUtilsClientMock
return NavigatorContentUtilsClient::CustomHandlersNew;
}
-void NavigatorContentUtilsClientMock::unregisterProtocolHandler(const String& scheme, const blink::KURL& baseURL,
- const blink::KURL& url)
+void NavigatorContentUtilsClientMock::unregisterProtocolHandler(const String& scheme, const KURL& baseURL,
+ const KURL& url)
{
m_protocolMap.remove(scheme);
}
« no previous file with comments | « Source/modules/mediastream/UserMediaRequest.cpp ('k') | Source/modules/netinfo/NetworkInformation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698