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

Unified Diff: content/browser/geolocation/network_location_provider.h

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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
Index: content/browser/geolocation/network_location_provider.h
diff --git a/content/browser/geolocation/network_location_provider.h b/content/browser/geolocation/network_location_provider.h
index 4330aeeb0a71095b425deb60b5cf1ecc092a6315..8f6e3605acfdcb1b25874d9eceb1b8e1463d2bb3 100644
--- a/content/browser/geolocation/network_location_provider.h
+++ b/content/browser/geolocation/network_location_provider.h
@@ -71,11 +71,11 @@ class NetworkLocationProvider
virtual ~NetworkLocationProvider();
// LocationProviderBase implementation
- virtual bool StartProvider(bool high_accuracy);
- virtual void StopProvider();
- virtual void GetPosition(Geoposition *position);
- virtual void UpdatePosition();
- 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 UpdatePosition() OVERRIDE;
+ virtual void OnPermissionGranted(const GURL& requesting_frame) OVERRIDE;
private:
// Satisfies a position request from cache or network.
@@ -87,15 +87,15 @@ class NetworkLocationProvider
bool IsStarted() const;
// DeviceDataProvider::ListenerInterface implementation.
- virtual void DeviceDataUpdateAvailable(RadioDataProvider* provider);
- virtual void DeviceDataUpdateAvailable(WifiDataProvider* provider);
+ virtual void DeviceDataUpdateAvailable(RadioDataProvider* provider) OVERRIDE;
+ virtual void DeviceDataUpdateAvailable(WifiDataProvider* provider) OVERRIDE;
// NetworkLocationRequest::ListenerInterface implementation.
virtual void LocationResponseAvailable(const Geoposition& position,
bool server_error,
const string16& access_token,
const RadioData& radio_data,
- const WifiData& wifi_data);
+ const WifiData& wifi_data) OVERRIDE;
scoped_refptr<AccessTokenStore> access_token_store_;
« no previous file with comments | « content/browser/geolocation/mock_location_provider.h ('k') | content/browser/geolocation/wifi_data_provider_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698