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 187e0b7..3d4426a 100644 --- a/chrome_frame/simple_resource_loader.cc +++ b/chrome_frame/simple_resource_loader.cc @@ -205,8 +205,8 @@ bool SimpleResourceLoader::LoadLocalePack( locales_path.Append(*scan + pack_suffix); base::FilePath dll_path = locales_path.Append(*scan + dll_suffix); - if (file_util::PathExists(resource_pack_path) && - file_util::PathExists(dll_path)) { + if (base::PathExists(resource_pack_path) && + base::PathExists(dll_path)) { scoped_ptr<ui::DataPack> cur_data_pack( new ui::DataPack(ui::SCALE_FACTOR_100P)); if (!cur_data_pack->LoadFromPath(resource_pack_path)) |