summaryrefslogtreecommitdiffstats
path: root/content/browser/geolocation/mock_location_provider.h
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-17 20:07:38 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-17 20:07:38 +0000
commitedc64de774e1af065b16996295053f0b92d22cb0 (patch)
tree9370bffca9da7615718c67448bcb5631016a8ad1 /content/browser/geolocation/mock_location_provider.h
parentc193faf261d5542429d6363a9f5f295ee7c1d70f (diff)
downloadchromium_src-edc64de774e1af065b16996295053f0b92d22cb0.zip
chromium_src-edc64de774e1af065b16996295053f0b92d22cb0.tar.gz
chromium_src-edc64de774e1af065b16996295053f0b92d22cb0.tar.bz2
Add OVERRIDE to content/.
BUG=104314 TEST=no change Review URL: http://codereview.chromium.org/8587009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110544 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/geolocation/mock_location_provider.h')
-rw-r--r--content/browser/geolocation/mock_location_provider.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/content/browser/geolocation/mock_location_provider.h b/content/browser/geolocation/mock_location_provider.h
index 35d1d05..b375a53 100644
--- a/content/browser/geolocation/mock_location_provider.h
+++ b/content/browser/geolocation/mock_location_provider.h
@@ -26,10 +26,10 @@ class MockLocationProvider : public LocationProviderBase {
void HandlePositionChanged(const Geoposition& position);
// LocationProviderBase implementation.
- virtual bool StartProvider(bool high_accuracy);
- virtual void StopProvider();
- virtual void GetPosition(Geoposition* position);
- virtual void OnPermissionGranted(const GURL& requesting_frame);
+ virtual bool StartProvider(bool high_accuracy) OVERRIDE;
+ virtual void StopProvider() OVERRIDE;
+ virtual void GetPosition(Geoposition* position) OVERRIDE;
+ virtual void OnPermissionGranted(const GURL& requesting_frame) OVERRIDE;
Geoposition position_;
enum State { STOPPED, LOW_ACCURACY, HIGH_ACCURACY } state_;