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

Unified Diff: Source/web/GeolocationClientProxy.cpp

Issue 462353003: Cleanup namespace usage in Source/web[A-V]*.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Minor updates 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/web/FullscreenController.cpp ('k') | Source/web/GraphicsLayerFactoryChromium.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/GeolocationClientProxy.cpp
diff --git a/Source/web/GeolocationClientProxy.cpp b/Source/web/GeolocationClientProxy.cpp
index 2a68d22449931e26d507111c8ce6c324009856ae..aef8befdfd473f4e8ffd9d845860f452a6f3c013 100644
--- a/Source/web/GeolocationClientProxy.cpp
+++ b/Source/web/GeolocationClientProxy.cpp
@@ -43,7 +43,7 @@ GeolocationClientProxy::~GeolocationClientProxy()
{
}
-void GeolocationClientProxy::setController(blink::GeolocationController* controller)
+void GeolocationClientProxy::setController(GeolocationController* controller)
{
// We support there not being a client, provided we don't do any Geolocation.
if (m_client) {
@@ -73,25 +73,25 @@ void GeolocationClientProxy::setEnableHighAccuracy(bool highAccuracy)
m_client->setEnableHighAccuracy(highAccuracy);
}
-blink::GeolocationPosition* GeolocationClientProxy::lastPosition()
+GeolocationPosition* GeolocationClientProxy::lastPosition()
{
WebGeolocationPosition webPosition;
if (m_client->lastPosition(webPosition))
- m_lastPosition = static_cast<blink::GeolocationPosition*>(webPosition);
+ m_lastPosition = static_cast<GeolocationPosition*>(webPosition);
else
m_lastPosition.clear();
return m_lastPosition.get();
}
-void GeolocationClientProxy::requestPermission(blink::Geolocation* geolocation)
+void GeolocationClientProxy::requestPermission(Geolocation* geolocation)
{
m_client->requestPermission(WebGeolocationPermissionRequest(geolocation));
}
-void GeolocationClientProxy::cancelPermissionRequest(blink::Geolocation* geolocation)
+void GeolocationClientProxy::cancelPermissionRequest(Geolocation* geolocation)
{
m_client->cancelPermissionRequest(WebGeolocationPermissionRequest(geolocation));
}
-}
+} // namespace blink
« no previous file with comments | « Source/web/FullscreenController.cpp ('k') | Source/web/GraphicsLayerFactoryChromium.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698