| Index: base/i18n/icu_util.cc
|
| diff --git a/base/i18n/icu_util.cc b/base/i18n/icu_util.cc
|
| index e5bbe17a9af5ad39589d52d5b4cabb8b4126fa36..193539d7ba4793b7e62c06e93a9bacb37c02aa65 100644
|
| --- a/base/i18n/icu_util.cc
|
| +++ b/base/i18n/icu_util.cc
|
| @@ -109,9 +109,9 @@ bool Initialize() {
|
| // be released.
|
| static file_util::MemoryMappedFile mapped_file;
|
| if (!mapped_file.IsValid()) {
|
| - // Assume it is in the MainBundle's Resources directory.
|
| + // Assume it is in the framework bundle's Resources directory.
|
| FilePath data_path =
|
| - base::mac::PathForMainAppBundleResource(CFSTR(ICU_UTIL_DATA_FILE_NAME));
|
| + base::mac::PathForFrameworkBundleResource(CFSTR(ICU_UTIL_DATA_FILE_NAME));
|
| if (data_path.empty()) {
|
| DLOG(ERROR) << ICU_UTIL_DATA_FILE_NAME << " not found in bundle";
|
| return false;
|
|
|