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

Unified Diff: content/browser/geolocation/geolocation_provider_impl.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/geolocation_provider_impl.h
diff --git a/content/browser/geolocation/geolocation_provider_impl.h b/content/browser/geolocation/geolocation_provider_impl.h
index d3cc1212000121ca74ce432c8c5985a7f6b75fb5..c4a29c57d15682a9bab44cc1ad57a672392a4620 100644
--- a/content/browser/geolocation/geolocation_provider_impl.h
+++ b/content/browser/geolocation/geolocation_provider_impl.h
@@ -28,9 +28,9 @@ class CONTENT_EXPORT GeolocationProviderImpl
// GeolocationProvider implementation:
virtual scoped_ptr<GeolocationProvider::Subscription>
AddLocationUpdateCallback(const LocationUpdateCallback& callback,
- bool use_high_accuracy) OVERRIDE;
- virtual void UserDidOptIntoLocationServices() OVERRIDE;
- virtual void OverrideLocationForTesting(const Geoposition& position) OVERRIDE;
+ bool use_high_accuracy) override;
+ virtual void UserDidOptIntoLocationServices() override;
+ virtual void OverrideLocationForTesting(const Geoposition& position) override;
// Callback from the LocationArbitrator. Public for testing.
void OnLocationUpdate(const Geoposition& position);
@@ -75,8 +75,8 @@ class CONTENT_EXPORT GeolocationProviderImpl
void NotifyClients(const Geoposition& position);
// Thread
- virtual void Init() OVERRIDE;
- virtual void CleanUp() OVERRIDE;
+ virtual void Init() override;
+ virtual void CleanUp() override;
base::CallbackList<void(const Geoposition&)> high_accuracy_callbacks_;
base::CallbackList<void(const Geoposition&)> low_accuracy_callbacks_;

Powered by Google App Engine
This is Rietveld 408576698