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

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

Issue 678073006: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bogus formatting 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 f5142fa89462a1d0aa01ec38a6d97b70313c3772..bd5eb6e9d074d622cde7b6335e91f3320e95e8b2 100644
--- a/content/browser/geolocation/location_arbitrator_impl_unittest.cc
+++ b/content/browser/geolocation/location_arbitrator_impl_unittest.cc
@@ -105,7 +105,7 @@ class TestingLocationArbitrator : public LocationArbitratorImpl {
class GeolocationLocationArbitratorTest : public testing::Test {
protected:
// testing::Test
- virtual void SetUp() {
+ void SetUp() override {
access_token_store_ = new NiceMock<FakeAccessTokenStore>;
observer_.reset(new MockLocationObserver);
LocationArbitratorImpl::LocationUpdateCallback callback =
@@ -116,8 +116,7 @@ class GeolocationLocationArbitratorTest : public testing::Test {
}
// testing::Test
- virtual void TearDown() {
- }
+ void TearDown() override {}
void CheckLastPositionInfo(double latitude,
double longitude,

Powered by Google App Engine
This is Rietveld 408576698