Index: chrome_frame/simple_resource_loader.cc |
diff --git a/chrome_frame/simple_resource_loader.cc b/chrome_frame/simple_resource_loader.cc |
index 187e0b70a0cd654f2b23510313688ad05867629a..3d4426a296dc16f170255ec312b3c5eda8fef1f7 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)) |