Home | History | Annotate | Download | only in spellchecker

Lines Matching refs:SpellCheck

5 #include "chrome/renderer/spellchecker/spellcheck.h"
36 bool enabled_; // New spellcheck-enabled state.
72 class SpellCheck::SpellcheckRequest {
94 // Initializes SpellCheck object.
99 // which in turn triggers the delayed initialization sequence in SpellCheck.
108 SpellCheck::SpellCheck()
113 SpellCheck::~SpellCheck() {
116 bool SpellCheck::OnControlMessageReceived(const IPC::Message& message) {
118 IPC_BEGIN_MESSAGE_MAP(SpellCheck, message)
133 void SpellCheck::OnInit(IPC::PlatformFileForTransit bdict_file,
145 void SpellCheck::OnCustomDictionaryChanged(
151 void SpellCheck::OnEnableAutoSpellCorrect(bool enable) {
155 void SpellCheck::OnEnableSpellCheck(bool enable) {
161 void SpellCheck::OnRequestDocumentMarkers() {
170 void SpellCheck::Init(base::PlatformFile file,
177 bool SpellCheck::SpellCheckWord(
198 bool SpellCheck::SpellCheckParagraph(
208 // Spellcheck::SpellCheckWord() automatically breaks text into words and
247 base::string16 SpellCheck::GetAutoCorrectionWord(const base::string16& word,
272 // Swap adjacent characters and spellcheck.
301 void SpellCheck::RequestTextChecking(
318 bool SpellCheck::InitializeIfNeeded() {
323 void SpellCheck::PostDelayedSpellCheckTask(SpellcheckRequest* request) {
328 base::Bind(&SpellCheck::PerformSpellCheck,
335 void SpellCheck::PerformSpellCheck(SpellcheckRequest* param) {
348 void SpellCheck::CreateTextCheckingResults(