| 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();
|
|
|
|
|