| Index: base/i18n/icu_util.cc
|
| diff --git a/base/i18n/icu_util.cc b/base/i18n/icu_util.cc
|
| index fed1176a734c0fe47ed422e8225ea43075d2be56..42aa8ad6f47296932b3eb0a51e61c685e56af3b1 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 =
|
|
|