Lines Matching refs:SpellCheck
5 #include "chrome/renderer/spellchecker/spellcheck.h"
37 bool enabled_; // New spellcheck-enabled state.
97 class SpellCheck::SpellcheckRequest {
119 // Initializes SpellCheck object.
124 // which in turn triggers the delayed initialization sequence in SpellCheck.
133 SpellCheck::SpellCheck()
138 SpellCheck::~SpellCheck() {
141 bool SpellCheck::OnControlMessageReceived(const IPC::Message& message) {
143 IPC_BEGIN_MESSAGE_MAP(SpellCheck, message)
158 void SpellCheck::OnInit(IPC::PlatformFileForTransit bdict_file,
170 void SpellCheck::OnCustomDictionaryChanged(
180 void SpellCheck::OnEnableAutoSpellCorrect(bool enable) {
184 void SpellCheck::OnEnableSpellCheck(bool enable) {
190 void SpellCheck::OnRequestDocumentMarkers() {
199 void SpellCheck::Init(base::File file,
206 bool SpellCheck::SpellCheckWord(
227 bool SpellCheck::SpellCheckParagraph(
237 // Spellcheck::SpellCheckWord() automatically breaks text into words and
276 base::string16 SpellCheck::GetAutoCorrectionWord(const base::string16& word,
301 // Swap adjacent characters and spellcheck.
330 void SpellCheck::RequestTextChecking(
347 bool SpellCheck::InitializeIfNeeded() {
352 void SpellCheck::PostDelayedSpellCheckTask(SpellcheckRequest* request) {
357 base::Bind(&SpellCheck::PerformSpellCheck,
364 void SpellCheck::PerformSpellCheck(SpellcheckRequest* param) {
377 void SpellCheck::CreateTextCheckingResults(