Index: base/i18n/icu_util.cc |
diff --git a/base/i18n/icu_util.cc b/base/i18n/icu_util.cc |
index e5bbe17a9af5ad39589d52d5b4cabb8b4126fa36..b3c9316e0b7850b06d305d7f89b73b4021cd7536 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. |
Mark Mentovai
2012/01/12 15:33:19
Framework bundle is not a proper name. Use lowerca
|
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; |