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

Unified Diff: chrome/browser/prefs/proxy_policy_unittest.cc

Issue 684613002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad indent 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: chrome/browser/prefs/proxy_policy_unittest.cc
diff --git a/chrome/browser/prefs/proxy_policy_unittest.cc b/chrome/browser/prefs/proxy_policy_unittest.cc
index f22b3c3a5f983fef9a6a0e894025737ec5436566..7e20c33d30e755bb5ac528b7c5fd96c0e8242b8c 100644
--- a/chrome/browser/prefs/proxy_policy_unittest.cc
+++ b/chrome/browser/prefs/proxy_policy_unittest.cc
@@ -84,7 +84,7 @@ class ProxyPolicyTest : public testing::Test {
ProxyPolicyTest()
: command_line_(CommandLine::NO_PROGRAM) {}
- virtual void SetUp() override {
+ void SetUp() override {
EXPECT_CALL(provider_, IsInitializationComplete(_))
.WillRepeatedly(Return(true));
@@ -94,9 +94,7 @@ class ProxyPolicyTest : public testing::Test {
provider_.Init();
}
- virtual void TearDown() override {
- provider_.Shutdown();
- }
+ void TearDown() override { provider_.Shutdown(); }
scoped_ptr<PrefService> CreatePrefService(bool with_managed_policies) {
PrefServiceMockFactory factory;
« no previous file with comments | « chrome/browser/prefs/profile_pref_store_manager_unittest.cc ('k') | chrome/browser/prefs/session_startup_pref_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698