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

Unified Diff: chrome/browser/chromeos/login/users/user_manager_unittest.cc

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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/chromeos/login/users/user_manager_unittest.cc
diff --git a/chrome/browser/chromeos/login/users/user_manager_unittest.cc b/chrome/browser/chromeos/login/users/user_manager_unittest.cc
index 7c448a4078128126a5e001a832b6d470a0a3acd8..6ba4944a26a96677e7dffb4791e4fdec0d28be13 100644
--- a/chrome/browser/chromeos/login/users/user_manager_unittest.cc
+++ b/chrome/browser/chromeos/login/users/user_manager_unittest.cc
@@ -40,7 +40,7 @@ class UnittestProfileManager : public ::ProfileManagerWithoutInit {
protected:
virtual Profile* CreateProfileHelper(
- const base::FilePath& file_path) OVERRIDE {
+ const base::FilePath& file_path) override {
if (!base::PathExists(file_path)) {
if (!base::CreateDirectory(file_path))
return NULL;
@@ -52,7 +52,7 @@ class UnittestProfileManager : public ::ProfileManagerWithoutInit {
class UserManagerTest : public testing::Test {
protected:
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
CommandLine& command_line = *CommandLine::ForCurrentProcess();
command_line.AppendSwitch(::switches::kTestType);
command_line.AppendSwitch(
@@ -84,7 +84,7 @@ class UserManagerTest : public testing::Test {
ResetUserManager();
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
// Unregister the in-memory local settings instance.
local_state_.reset();

Powered by Google App Engine
This is Rietveld 408576698