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

Unified Diff: chrome/browser/chromeos/login/auth/cryptohome_authenticator_unittest.cc

Issue 856493004: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/login. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/chromeos/login/auth/cryptohome_authenticator_unittest.cc
diff --git a/chrome/browser/chromeos/login/auth/cryptohome_authenticator_unittest.cc b/chrome/browser/chromeos/login/auth/cryptohome_authenticator_unittest.cc
index a9e721825380822e2ab3cccc0d89df80cfe81f48..62d9ccc136de99c35ca5d9e3a6708eda0cbb4398 100644
--- a/chrome/browser/chromeos/login/auth/cryptohome_authenticator_unittest.cc
+++ b/chrome/browser/chromeos/login/auth/cryptohome_authenticator_unittest.cc
@@ -151,9 +151,9 @@ class CryptohomeAuthenticatorTest : public testing::Test {
FakeCryptohomeClient::GetStubSystemSalt()));
}
- virtual ~CryptohomeAuthenticatorTest() {}
+ ~CryptohomeAuthenticatorTest() override {}
- virtual void SetUp() {
+ void SetUp() override {
base::CommandLine::ForCurrentProcess()->AppendSwitch(
switches::kLoginManager);
@@ -174,7 +174,7 @@ class CryptohomeAuthenticatorTest : public testing::Test {
}
// Tears down the test fixture.
- virtual void TearDown() {
+ void TearDown() override {
SystemSaltGetter::Shutdown();
DBusThreadManager::Shutdown();

Powered by Google App Engine
This is Rietveld 408576698