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

Unified Diff: content/browser/geofencing/geofencing_manager_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/geofencing/geofencing_manager_unittest.cc
diff --git a/content/browser/geofencing/geofencing_manager_unittest.cc b/content/browser/geofencing/geofencing_manager_unittest.cc
index 6970b7171ca488c18c515b77d5bcdc2c6c99f61b..cf64b9faa047167783ae3055794e94a63b13a435 100644
--- a/content/browser/geofencing/geofencing_manager_unittest.cc
+++ b/content/browser/geofencing/geofencing_manager_unittest.cc
@@ -87,7 +87,7 @@ class GeofencingManagerTest : public testing::Test {
expected_regions_[kTestRegionId] = test_region_;
}
- virtual void SetUp() {
+ void SetUp() override {
service_ = new TestGeofencingService();
ON_CALL(*service_, IsServiceAvailable())
.WillByDefault(testing::Return(false));
@@ -95,7 +95,7 @@ class GeofencingManagerTest : public testing::Test {
manager_->SetServiceForTesting(service_);
}
- virtual void TearDown() {
+ void TearDown() override {
manager_ = nullptr;
delete service_;
service_ = nullptr;
« no previous file with comments | « content/browser/gamepad/gamepad_service_unittest.cc ('k') | content/browser/geofencing/geofencing_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698