| 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 ae5703cddf20bb37a61e906ee3f940e33dafc8d4..8d8e9c4831e70832f8c539504c38beecf0e53126 100644
|
| --- a/chrome/browser/profiles/profile_info_cache.cc
|
| +++ b/chrome/browser/profiles/profile_info_cache.cc
|
| @@ -125,7 +125,7 @@ void SaveBitmap(ImageData* data,
|
|
|
| // Make sure the destination directory exists.
|
| base::FilePath dir = image_path.DirName();
|
| - if (!base::DirectoryExists(dir) && !file_util::CreateDirectory(dir)) {
|
| + if (!base::DirectoryExists(dir) && !base::CreateDirectory(dir)) {
|
| LOG(ERROR) << "Failed to create parent directory.";
|
| return;
|
| }
|
|
|