| 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 b663bc8f06e66e54a5fb8bc73385c7a20b7214f6..7e4fc555a150c464e3d347eee1a7edc8cfa0ed02 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) {
|
|
|