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)); |
} |