diff options
Diffstat (limited to 'chrome_frame/simple_resource_loader.cc')
-rw-r--r-- | chrome_frame/simple_resource_loader.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome_frame/simple_resource_loader.cc b/chrome_frame/simple_resource_loader.cc index 3d4426a..e6d5c6c 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; } |