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

Unified Diff: Source/web/GeolocationClientProxy.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/GeolocationClientProxy.h ('k') | Source/web/GraphicsLayerFactoryChromium.h » ('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 71832f31b883fe6c57f2c80549f09f40c09e3893..2a68d22449931e26d507111c8ce6c324009856ae 100644
--- a/Source/web/GeolocationClientProxy.cpp
+++ b/Source/web/GeolocationClientProxy.cpp
@@ -43,7 +43,7 @@ GeolocationClientProxy::~GeolocationClientProxy()
{
}
-void GeolocationClientProxy::setController(WebCore::GeolocationController* controller)
+void GeolocationClientProxy::setController(blink::GeolocationController* controller)
{
// We support there not being a client, provided we don't do any Geolocation.
if (m_client) {
@@ -73,23 +73,23 @@ void GeolocationClientProxy::setEnableHighAccuracy(bool highAccuracy)
m_client->setEnableHighAccuracy(highAccuracy);
}
-WebCore::GeolocationPosition* GeolocationClientProxy::lastPosition()
+blink::GeolocationPosition* GeolocationClientProxy::lastPosition()
{
WebGeolocationPosition webPosition;
if (m_client->lastPosition(webPosition))
- m_lastPosition = static_cast<WebCore::GeolocationPosition*>(webPosition);
+ m_lastPosition = static_cast<blink::GeolocationPosition*>(webPosition);
else
m_lastPosition.clear();
return m_lastPosition.get();
}
-void GeolocationClientProxy::requestPermission(WebCore::Geolocation* geolocation)
+void GeolocationClientProxy::requestPermission(blink::Geolocation* geolocation)
{
m_client->requestPermission(WebGeolocationPermissionRequest(geolocation));
}
-void GeolocationClientProxy::cancelPermissionRequest(WebCore::Geolocation* geolocation)
+void GeolocationClientProxy::cancelPermissionRequest(blink::Geolocation* geolocation)
{
m_client->cancelPermissionRequest(WebGeolocationPermissionRequest(geolocation));
}
« no previous file with comments | « Source/web/GeolocationClientProxy.h ('k') | Source/web/GraphicsLayerFactoryChromium.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698