Home
last modified time | relevance | path

Searched refs:platform_spelling_engine_ (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/chrome/renderer/spellchecker/
Dspellcheck_language.cc13 : platform_spelling_engine_(CreateNativeSpellingEngine()) { in SpellcheckLanguage()
22 DCHECK(platform_spelling_engine_.get()); in Init()
23 platform_spelling_engine_->Init(file); in Init()
31 DCHECK(platform_spelling_engine_.get()); in InitializeIfNeeded()
32 return platform_spelling_engine_->InitializeIfNeeded(); in InitializeIfNeeded()
51 if (!platform_spelling_engine_.get() || in SpellCheckWord()
52 !platform_spelling_engine_->IsEnabled()) in SpellCheckWord()
71 DCHECK(platform_spelling_engine_.get()); in SpellCheckWord()
75 if (platform_spelling_engine_->CheckSpelling(word, tag)) in SpellCheckWord()
88 platform_spelling_engine_->FillSuggestionList(word, in SpellCheckWord()
[all …]
Dspellcheck_language.h71 scoped_ptr<SpellingEngine> platform_spelling_engine_; variable
Dspellcheck_unittest.cc65 spell_check_->spellcheck_.platform_spelling_engine_.reset( in InitializeSpellCheck()
81 return spell_check_->spellcheck_.platform_spelling_engine_->CheckSpelling( in CheckSpelling()