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

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

Issue 865123003: Update {virtual,override,final} to follow C++11 style in content, round 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix format Created 5 years, 11 months 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
« no previous file with comments | « no previous file | content/browser/geolocation/wifi_data_provider_chromeos_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/geolocation/wifi_data_provider_chromeos.h
diff --git a/content/browser/geolocation/wifi_data_provider_chromeos.h b/content/browser/geolocation/wifi_data_provider_chromeos.h
index db56ea7da09025e7c5234ee795161b28938f5697..0e8bc93fd217761a02608500d92ee944d8fa758a 100644
--- a/content/browser/geolocation/wifi_data_provider_chromeos.h
+++ b/content/browser/geolocation/wifi_data_provider_chromeos.h
@@ -16,13 +16,13 @@ class CONTENT_EXPORT WifiDataProviderChromeOs : public WifiDataProvider {
WifiDataProviderChromeOs();
// WifiDataProvider
- virtual void StartDataProvider() override;
- virtual void StopDataProvider() override;
- virtual bool GetData(WifiData* data) override;
+ void StartDataProvider() override;
+ void StopDataProvider() override;
+ bool GetData(WifiData* data) override;
private:
friend class GeolocationChromeOsWifiDataProviderTest;
- virtual ~WifiDataProviderChromeOs();
+ ~WifiDataProviderChromeOs() override;
// UI thread
void DoWifiScanTaskOnUIThread(); // The polling task
« no previous file with comments | « no previous file | content/browser/geolocation/wifi_data_provider_chromeos_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698