| Index: chrome_frame/simple_resource_loader.cc
|
| diff --git a/chrome_frame/simple_resource_loader.cc b/chrome_frame/simple_resource_loader.cc
|
| index 3d4426a296dc16f170255ec312b3c5eda8fef1f7..e6d5c6c3c2ea980f7bb4f2e5b17961f362ff691c 100644
|
| --- a/chrome_frame/simple_resource_loader.cc
|
| +++ b/chrome_frame/simple_resource_loader.cc
|
| @@ -148,7 +148,7 @@ void SimpleResourceLoader::DetermineLocalesDirectory(
|
| // We may be residing in the "locales" directory's parent, or we might be
|
| // in a sibling directory. Move up one and look for Locales again in the
|
| // latter case.
|
| - if (!file_util::DirectoryExists(*locales_path)) {
|
| + if (!base::DirectoryExists(*locales_path)) {
|
| *locales_path = module_path.DirName();
|
| *locales_path = locales_path->Append(kLocalesDirName);
|
| }
|
| @@ -225,7 +225,7 @@ bool SimpleResourceLoader::LoadLocalePack(
|
| }
|
| }
|
| }
|
| - DCHECK(found_pack || file_util::DirectoryExists(locales_path))
|
| + DCHECK(found_pack || base::DirectoryExists(locales_path))
|
| << "Could not locate locales DLL directory.";
|
| return found_pack;
|
| }
|
|
|