Commit 748aea3e authored by Jocelyn Turcotte's avatar Jocelyn Turcotte
Browse files

<chromium> Add a hook to provide our own icu data file path


Qt will always use QLibraryInfo to determine where this file was
installed, regardless of the platform.

Change-Id: I79374655356d872b2bc766ec8a33fcba343e9c95
Reviewed-by: default avatarAndras Becsi <andras.becsi@digia.com>
No related merge requests found
Showing with 8 additions and 1 deletion
...@@ -47,6 +47,8 @@ enum BasePathKey { ...@@ -47,6 +47,8 @@ enum BasePathKey {
DIR_TEST_DATA, // Used only for testing. DIR_TEST_DATA, // Used only for testing.
DIR_QT_LIBRARY_DATA,
PATH_END PATH_END
}; };
......
...@@ -121,7 +121,12 @@ bool InitializeICU() { ...@@ -121,7 +121,12 @@ bool InitializeICU() {
// be released. // be released.
CR_DEFINE_STATIC_LOCAL(base::MemoryMappedFile, mapped_file, ()); CR_DEFINE_STATIC_LOCAL(base::MemoryMappedFile, mapped_file, ());
if (!mapped_file.IsValid()) { if (!mapped_file.IsValid()) {
#if !defined(OS_MACOSX) #if defined(TOOLKIT_QT)
FilePath data_path;
bool path_ok = PathService::Get(base::DIR_QT_LIBRARY_DATA, &data_path);
DCHECK(path_ok);
data_path = data_path.AppendASCII(ICU_UTIL_DATA_FILE_NAME);
#elif !defined(OS_MACOSX)
FilePath data_path; FilePath data_path;
#if defined(OS_WIN) #if defined(OS_WIN)
// The data file will be in the same directory as the current module. // The data file will be in the same directory as the current module.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment