| Index: chrome/tools/mac_helpers/infoplist_strings_util.mm
|
| diff --git a/chrome/tools/mac_helpers/infoplist_strings_util.mm b/chrome/tools/mac_helpers/infoplist_strings_util.mm
|
| index 44c4f53a90436e80383f1a3b6b19b205bb8e9dc0..ebe57d32f3281ad2e26f5b573478853ea91d163e 100644
|
| --- a/chrome/tools/mac_helpers/infoplist_strings_util.mm
|
| +++ b/chrome/tools/mac_helpers/infoplist_strings_util.mm
|
| @@ -61,7 +61,7 @@ ui::DataPack* LoadResourceDataPack(const char* dir_path,
|
| dir_path, branding_strings_name, locale_name];
|
| if (resource_path) {
|
| base::FilePath resources_pak_path([resource_path fileSystemRepresentation]);
|
| - file_util::AbsolutePath(&resources_pak_path);
|
| + resources_pak_path = base::MakeAbsoluteFilePath(resources_pak_path);
|
| resource_pack = new ui::DataPack(ui::SCALE_FACTOR_100P);
|
| bool success = resource_pack->LoadFromPath(resources_pak_path);
|
| if (!success) {
|
|
|