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_); |
} |