| Index: chrome/browser/profiles/profile_manager_unittest.cc
|
| diff --git a/chrome/browser/profiles/profile_manager_unittest.cc b/chrome/browser/profiles/profile_manager_unittest.cc
|
| index 45beab1d8cc762450ca8214b303d53bc77f4c3a1..c965a6f80ea278f5c76fe799c8029e945cbba309 100644
|
| --- a/chrome/browser/profiles/profile_manager_unittest.cc
|
| +++ b/chrome/browser/profiles/profile_manager_unittest.cc
|
| @@ -72,7 +72,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;
|
| @@ -81,7 +81,7 @@ class UnittestProfileManager : public ::ProfileManagerWithoutInit {
|
| }
|
|
|
| virtual Profile* CreateProfileAsyncHelper(const base::FilePath& path,
|
| - Delegate* delegate) OVERRIDE {
|
| + Delegate* delegate) override {
|
| // This is safe while all file operations are done on the FILE thread.
|
| BrowserThread::PostTask(
|
| BrowserThread::FILE, FROM_HERE,
|
| @@ -393,7 +393,7 @@ class UnittestGuestProfileManager : public UnittestProfileManager {
|
|
|
| protected:
|
| virtual Profile* CreateProfileHelper(
|
| - const base::FilePath& file_path) OVERRIDE {
|
| + const base::FilePath& file_path) override {
|
| TestingProfile::Builder builder;
|
| builder.SetGuestSession();
|
| builder.SetPath(file_path);
|
|
|