diff options
Diffstat (limited to 'base/i18n/icu_util.cc')
-rw-r--r-- | base/i18n/icu_util.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/i18n/icu_util.cc b/base/i18n/icu_util.cc index fed1176..42aa8ad 100644 --- a/base/i18n/icu_util.cc +++ b/base/i18n/icu_util.cc @@ -14,6 +14,7 @@ #include "base/file_util.h" #include "base/files/file_path.h" +#include "base/files/memory_mapped_file.h" #include "base/logging.h" #include "base/path_service.h" #include "base/string_util.h" @@ -111,7 +112,7 @@ bool Initialize() { // Chrome doesn't normally shut down ICU, so the mapped data shouldn't ever // be released. - static file_util::MemoryMappedFile mapped_file; + static base::MemoryMappedFile mapped_file; if (!mapped_file.IsValid()) { // Assume it is in the framework bundle's Resources directory. FilePath data_path = |