| Index: chrome/test/base/testing_profile.cc | 
| diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc | 
| index 5770b64317fac0ee6b5eabb7a5d1afdd6302c1c3..4e21951f8c2a9564a13f471f50aa1cd27c74dc4f 100644 | 
| --- a/chrome/test/base/testing_profile.cc | 
| +++ b/chrome/test/base/testing_profile.cc | 
| @@ -294,7 +294,7 @@ void TestingProfile::CreateTempProfileDir() { | 
| base::FilePath fallback_dir( | 
| system_tmp_dir.AppendASCII("TestingProfilePath")); | 
| base::DeleteFile(fallback_dir, true); | 
| -    file_util::CreateDirectory(fallback_dir); | 
| +    base::CreateDirectory(fallback_dir); | 
| if (!temp_dir_.Set(fallback_dir)) { | 
| // That shouldn't happen, but if it does, try to recover. | 
| LOG(ERROR) << "Failed to use a fallback temporary directory."; | 
| @@ -322,7 +322,7 @@ void TestingProfile::Init() { | 
| CreateTestingPrefService(); | 
|  | 
| if (!base::PathExists(profile_path_)) | 
| -    file_util::CreateDirectory(profile_path_); | 
| +    base::CreateDirectory(profile_path_); | 
|  | 
| // TODO(joaodasilva): remove this once this PKS isn't created in ProfileImpl | 
| // anymore, after converting the PrefService to a PKS. Until then it must | 
|  |