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

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

Issue 631053003: Replacing the OVERRIDE with override and FINAL with final in content/browser/geolocation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolved mac issue Created 6 years, 2 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
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 10408874378caec9f9d808c4591871878dedf304..06e90daaa5c773474e2aaa403ca047ff91d8766c 100644
--- a/content/browser/geolocation/network_location_provider.h
+++ b/content/browser/geolocation/network_location_provider.h
@@ -72,11 +72,11 @@ class NetworkLocationProvider
virtual ~NetworkLocationProvider();
// LocationProvider implementation
- virtual bool StartProvider(bool high_accuracy) OVERRIDE;
- virtual void StopProvider() OVERRIDE;
- virtual void GetPosition(Geoposition *position) OVERRIDE;
- virtual void RequestRefresh() OVERRIDE;
- virtual void OnPermissionGranted() OVERRIDE;
+ virtual bool StartProvider(bool high_accuracy) override;
+ virtual void StopProvider() override;
+ virtual void GetPosition(Geoposition *position) override;
+ virtual void RequestRefresh() override;
+ virtual void OnPermissionGranted() override;
private:
// Satisfies a position request from cache or network.

Powered by Google App Engine
This is Rietveld 408576698