HomeSort by relevance Sort by last modified time
    Searched defs:selectionType (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisibleSelection.h 42 enum SelectionType { NoSelection, CaretSelection, RangeSelection };
56 SelectionType selectionType() const { return m_selectionType; }
76 bool isNone() const { return selectionType() == NoSelection; }
77 bool isCaret() const { return selectionType() == CaretSelection; }
78 bool isRange() const { return selectionType() == RangeSelection; }
79 bool isCaretOrRange() const { return selectionType() != NoSelection; }
143 SelectionType m_selectionType; // None, Caret, Range
FrameSelection.h 109 VisibleSelection::SelectionType selectionType() const { return m_selection.selectionType(); }

Completed in 38 milliseconds