Home | History | Annotate | Download | only in editing

Lines Matching refs:oldSelection

492 void Editor::respondToChangedSelection(const VisibleSelection& oldSelection)
496 m_deleteButtonController->respondToChangedSelection(oldSelection);
497 m_spellingCorrector->respondToChangedSelection(oldSelection);
1514 VisibleSelection oldSelection = m_frame->selection()->selection();
1544 m_frame->selection()->setSelection(oldSelection, 0);
2799 bool Editor::shouldChangeSelection(const VisibleSelection& oldSelection, const VisibleSelection& newSelection, EAffinity affinity, bool stillSelecting) const
2801 return client()->shouldChangeSelectedRange(oldSelection.toNormalizedRange().get(), newSelection.toNormalizedRange().get(), affinity, stillSelecting);
3147 void Editor::respondToChangedSelection(const VisibleSelection& oldSelection, SelectionController::SetSelectionOptions options)
3149 m_spellingCorrector->stopPendingCorrection(oldSelection);
3170 // oldSelection may no longer be in the document.
3171 if (shouldCheckSpellingAndGrammar && closeTyping && oldSelection.isContentEditable() && oldSelection.start().deprecatedNode() && oldSelection.start().anchorNode()->inDocument()) {
3172 VisiblePosition oldStart(oldSelection.visibleStart());
3199 respondToChangedSelection(oldSelection);