Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / chromeos / login / users / user_manager_unittest.cc
index 7c448a4..ef2b9c7 100644 (file)
@@ -6,6 +6,7 @@
 #include <cstring>
 
 #include "base/command_line.h"
+#include "base/files/file_util.h"
 #include "base/files/scoped_temp_dir.h"
 #include "base/memory/scoped_ptr.h"
 #include "base/prefs/pref_service.h"
@@ -40,7 +41,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 +53,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 +85,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();