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(); |