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

Unified Diff: content/browser/geofencing/geofencing_service_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_service_unittest.cc
diff --git a/content/browser/geofencing/geofencing_service_unittest.cc b/content/browser/geofencing/geofencing_service_unittest.cc
index 329fcaf7159606360f6124e392e5908645667bbd..25dd8137aa56a7b8c18b2f7b34b396beae0d5865 100644
--- a/content/browser/geofencing/geofencing_service_unittest.cc
+++ b/content/browser/geofencing/geofencing_service_unittest.cc
@@ -66,9 +66,9 @@ class GeofencingServiceTest : public testing::Test {
test_region_.radius = 100;
}
- virtual void SetUp() { service_ = new GeofencingServiceImpl(); }
+ void SetUp() override { service_ = new GeofencingServiceImpl(); }
- virtual void TearDown() { delete service_; }
+ void TearDown() override { delete service_; }
void SetProviderForTests() {
provider_ = new MockGeofencingProvider();

Powered by Google App Engine
This is Rietveld 408576698