Home | History | Annotate | Download | only in editing

Lines Matching refs:correction

263     // Pending correction should always be where caret is. But in case this is not always true, we still want to dismiss the panel without accepting the correction.
269 void SpellingCorrectionController::respondToUnappliedSpellCorrection(const VisibleSelection& selectionOfCorrected, const String& corrected, const String& correction)
271 client()->recordAutocorrectionResponse(EditorClient::AutocorrectionReverted, corrected, correction);
323 void SpellingCorrectionController::handleCorrectionPanelResult(const String& correction)
338 if (correction.length()) {
339 m_correctionPanelInfo.replacementString = correction;
346 if (correction.length()) {
347 m_correctionPanelInfo.replacementString = correction;
371 // containing the original pre-correction word so that user can quickly revert the
372 // undesired autocorrection. Here, we start correction panel timer once we confirm that
459 void SpellingCorrectionController::recordSpellcheckerResponseForModifiedCorrection(Range* rangeOfCorrection, const String& corrected, const String& correction)
471 client()->recordAutocorrectionResponse(EditorClient::AutocorrectionReverted, corrected, correction);
473 client()->recordAutocorrectionResponse(EditorClient::AutocorrectionEdited, corrected, correction);