| Index: chrome/browser/spellchecker.cc
|
| ===================================================================
|
| --- chrome/browser/spellchecker.cc (revision 6940)
|
| +++ chrome/browser/spellchecker.cc (working copy)
|
| @@ -430,7 +430,7 @@
|
| TimeTicks begin_time = TimeTicks::Now();
|
| bdict_file_.reset(new file_util::MemoryMappedFile());
|
| if (bdict_file_->Initialize(FilePath::FromWStringHack(bdict_file_name_))) {
|
| - hunspell_.reset(new Hunspell(bdict_file_->Data(), bdict_file_->Length()));
|
| + hunspell_.reset(new Hunspell(bdict_file_->data(), bdict_file_->length()));
|
| AddCustomWordsToHunspell();
|
| }
|
| DHISTOGRAM_TIMES(L"Spellcheck.InitTime", TimeTicks::Now() - begin_time);
|
|
|