Searched defs:oldSelection (Results 1 - 3 of 3) sorted by relevance

/external/webkit/WebCore/editing/
H A DDeleteButtonController.cpp170 void DeleteButtonController::respondToChangedSelection(const VisibleSelection& oldSelection) argument
175 HTMLElement* oldElement = enclosingDeletableElement(oldSelection);
H A DEditor.cpp385 void Editor::respondToChangedSelection(const VisibleSelection& oldSelection) argument
389 m_deleteButtonController->respondToChangedSelection(oldSelection);
1357 VisibleSelection oldSelection = m_frame->selection()->selection(); local
1387 m_frame->selection()->setSelection(oldSelection, false, false);
/external/webkit/WebCore/page/
H A DFrame.cpp846 bool Frame::shouldChangeSelection(const VisibleSelection& oldSelection, const VisibleSelection& newSelection, EAffinity affinity, bool stillSelecting) const argument
848 return editor()->client()->shouldChangeSelectedRange(oldSelection.toNormalizedRange().get(), newSelection.toNormalizedRange().get(),
1706 void Frame::respondToChangedSelection(const VisibleSelection& oldSelection, bool closeTyping) argument
1723 // oldSelection may no longer be in the document.
1724 if (closeTyping && oldSelection.isContentEditable() && oldSelection.start().node() && oldSelection.start().node()->inDocument()) {
1725 VisiblePosition oldStart(oldSelection.visibleStart());
1750 editor()->respondToChangedSelection(oldSelection);

Completed in 20 milliseconds