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

Unified Diff: content/browser/geolocation/wifi_data_provider_common.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/wifi_data_provider_common.h
diff --git a/content/browser/geolocation/wifi_data_provider_common.h b/content/browser/geolocation/wifi_data_provider_common.h
index df3d6819f409ed6d488c139bd957b8afff358f9f..eda08e38a24062f65408bb20554807d5f93b96da 100644
--- a/content/browser/geolocation/wifi_data_provider_common.h
+++ b/content/browser/geolocation/wifi_data_provider_common.h
@@ -82,9 +82,9 @@ class CONTENT_EXPORT WifiDataProviderCommon
WifiDataProviderCommon();
// WifiDataProviderImplBase implementation
- virtual bool StartDataProvider();
- virtual void StopDataProvider();
- virtual bool GetData(WifiData* data);
+ virtual bool StartDataProvider() OVERRIDE;
+ virtual void StopDataProvider() OVERRIDE;
+ virtual bool GetData(WifiData* data) OVERRIDE;
protected:
virtual ~WifiDataProviderCommon();
@@ -97,8 +97,8 @@ class CONTENT_EXPORT WifiDataProviderCommon
private:
// Thread implementation
- virtual void Init();
- virtual void CleanUp();
+ virtual void Init() OVERRIDE;
+ virtual void CleanUp() OVERRIDE;
// Task which run in the child thread.
void DoWifiScanTask();
« no previous file with comments | « content/browser/geolocation/network_location_provider.h ('k') | content/browser/geolocation/wifi_data_provider_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698