summaryrefslogtreecommitdiffstats
path: root/content/browser/geolocation/geolocation_provider.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/geolocation/geolocation_provider.h')
-rw-r--r--content/browser/geolocation/geolocation_provider.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/geolocation/geolocation_provider.h b/content/browser/geolocation/geolocation_provider.h
index 5001fee..b627b1e 100644
--- a/content/browser/geolocation/geolocation_provider.h
+++ b/content/browser/geolocation/geolocation_provider.h
@@ -47,7 +47,7 @@ class CONTENT_EXPORT GeolocationProvider
bool HasPermissionBeenGranted() const;
// GeolocationObserver
- virtual void OnLocationUpdate(const Geoposition& position);
+ virtual void OnLocationUpdate(const Geoposition& position) OVERRIDE;
// Gets a pointer to the singleton instance of the location relayer, which
// is in turn bound to the browser's global context objects. Ownership is NOT
@@ -83,8 +83,8 @@ class CONTENT_EXPORT GeolocationProvider
void NotifyObservers(const Geoposition& position);
// Thread
- virtual void Init();
- virtual void CleanUp();
+ virtual void Init() OVERRIDE;
+ virtual void CleanUp() OVERRIDE;
scoped_refptr<base::MessageLoopProxy> client_loop_;