| Index: chrome/browser/profiles/profile_info_cache.cc
|
| diff --git a/chrome/browser/profiles/profile_info_cache.cc b/chrome/browser/profiles/profile_info_cache.cc
|
| index 9434b5a99066788308dc072bc1b8819912ffa084..94e4c4753a940a31044f7ec484fb906ddc5da148 100644
|
| --- a/chrome/browser/profiles/profile_info_cache.cc
|
| +++ b/chrome/browser/profiles/profile_info_cache.cc
|
| @@ -122,7 +122,7 @@ void SaveBitmap(ImageData* data,
|
|
|
| // Make sure the destination directory exists.
|
| base::FilePath dir = image_path.DirName();
|
| - if (!file_util::DirectoryExists(dir) && !file_util::CreateDirectory(dir)) {
|
| + if (!base::DirectoryExists(dir) && !file_util::CreateDirectory(dir)) {
|
| LOG(ERROR) << "Failed to create parent directory.";
|
| return;
|
| }
|
|
|