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

Unified Diff: Source/web/GeolocationClientProxy.h

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/FullscreenController.cpp ('k') | Source/web/GeolocationClientProxy.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/GeolocationClientProxy.h
diff --git a/Source/web/GeolocationClientProxy.h b/Source/web/GeolocationClientProxy.h
index 2af0b655fe22cbdf950c53ee62b14805bd64489e..3e88f0d96f7811532e060fee3310a13946809198 100644
--- a/Source/web/GeolocationClientProxy.h
+++ b/Source/web/GeolocationClientProxy.h
@@ -30,30 +30,30 @@
#include "platform/heap/Handle.h"
#include "public/web/WebGeolocationController.h"
-namespace WebCore {
+namespace blink {
class GeolocationPosition;
}
namespace blink {
class WebGeolocationClient;
-class GeolocationClientProxy FINAL : public WebCore::GeolocationClient {
+class GeolocationClientProxy FINAL : public blink::GeolocationClient {
public:
GeolocationClientProxy(WebGeolocationClient* client);
virtual ~GeolocationClientProxy();
- void setController(WebCore::GeolocationController *controller);
+ void setController(blink::GeolocationController *controller);
virtual void geolocationDestroyed() OVERRIDE;
virtual void startUpdating() OVERRIDE;
virtual void stopUpdating() OVERRIDE;
virtual void setEnableHighAccuracy(bool) OVERRIDE;
- virtual WebCore::GeolocationPosition* lastPosition() OVERRIDE;
+ virtual blink::GeolocationPosition* lastPosition() OVERRIDE;
- virtual void requestPermission(WebCore::Geolocation*) OVERRIDE;
- virtual void cancelPermissionRequest(WebCore::Geolocation*) OVERRIDE;
+ virtual void requestPermission(blink::Geolocation*) OVERRIDE;
+ virtual void cancelPermissionRequest(blink::Geolocation*) OVERRIDE;
private:
WebGeolocationClient* m_client;
- WebCore::Persistent<WebCore::GeolocationPosition> m_lastPosition;
+ blink::Persistent<blink::GeolocationPosition> m_lastPosition;
};
} // namespace blink
« no previous file with comments | « Source/web/FullscreenController.cpp ('k') | Source/web/GeolocationClientProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698