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

Unified Diff: content/browser/geolocation/location_arbitrator_impl_unittest.cc

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/location_arbitrator_impl_unittest.cc
diff --git a/content/browser/geolocation/location_arbitrator_impl_unittest.cc b/content/browser/geolocation/location_arbitrator_impl_unittest.cc
index 81df7a4326fa8138dfb6eb215d775ee017812832..ff6ed253856c49570f8583fe44705421d35212f6 100644
--- a/content/browser/geolocation/location_arbitrator_impl_unittest.cc
+++ b/content/browser/geolocation/location_arbitrator_impl_unittest.cc
@@ -73,11 +73,11 @@ class TestingLocationArbitrator : public LocationArbitratorImpl {
access_token_store_(access_token_store) {
}
- virtual base::Time GetTimeNow() const OVERRIDE {
+ virtual base::Time GetTimeNow() const override {
return GetTimeNowForTest();
}
- virtual AccessTokenStore* NewAccessTokenStore() OVERRIDE {
+ virtual AccessTokenStore* NewAccessTokenStore() override {
return access_token_store_.get();
}
@@ -85,11 +85,11 @@ class TestingLocationArbitrator : public LocationArbitratorImpl {
AccessTokenStore* access_token_store,
net::URLRequestContextGetter* context,
const GURL& url,
- const base::string16& access_token) OVERRIDE {
+ const base::string16& access_token) override {
return new MockLocationProvider(&cell_);
}
- virtual LocationProvider* NewSystemLocationProvider() OVERRIDE {
+ virtual LocationProvider* NewSystemLocationProvider() override {
return new MockLocationProvider(&gps_);
}
« no previous file with comments | « content/browser/geolocation/location_arbitrator_impl.h ('k') | content/browser/geolocation/location_provider_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698