| Index: chrome/renderer/spellchecker/hunspell_engine.cc
|
| diff --git a/chrome/renderer/spellchecker/hunspell_engine.cc b/chrome/renderer/spellchecker/hunspell_engine.cc
|
| index 34004f741a47e9cc001135280f0359bc6f38e9c2..23706fa8f93962fdea527c4fc92a30bb12257d83 100644
|
| --- a/chrome/renderer/spellchecker/hunspell_engine.cc
|
| +++ b/chrome/renderer/spellchecker/hunspell_engine.cc
|
| @@ -2,11 +2,12 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "hunspell_engine.h"
|
| +#include "chrome/renderer/spellchecker/hunspell_engine.h"
|
|
|
| #include <algorithm>
|
| #include <iterator>
|
|
|
| +#include "base/files/memory_mapped_file.h"
|
| #include "base/metrics/histogram.h"
|
| #include "base/time.h"
|
| #include "chrome/common/spellcheck_common.h"
|
| @@ -58,7 +59,7 @@ void HunspellEngine::InitializeHunspell() {
|
| if (hunspell_.get())
|
| return;
|
|
|
| - bdict_file_.reset(new file_util::MemoryMappedFile);
|
| + bdict_file_.reset(new base::MemoryMappedFile);
|
|
|
| if (bdict_file_->Initialize(file_)) {
|
| TimeTicks debug_start_time = base::Histogram::DebugNow();
|
|
|