Home
last modified time | relevance | path

Searched refs:DragCaretController (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
DCaret.cpp44 DragCaretController::DragCaretController() in DragCaretController() function in WebCore::DragCaretController
49 PassOwnPtr<DragCaretController> DragCaretController::create() in create()
51 return adoptPtr(new DragCaretController); in create()
54 bool DragCaretController::isContentRichlyEditable() const in isContentRichlyEditable()
59 void DragCaretController::setCaretPosition(const VisiblePosition& position) in setCaretPosition()
91 void DragCaretController::nodeWillBeRemoved(Node& node) in nodeWillBeRemoved()
165 RenderObject* DragCaretController::caretRenderer() const in caretRenderer()
259 void DragCaretController::paintDragCaret(Frame* frame, GraphicsContext* p, const LayoutPoint& paint… in paintDragCaret()
DCaret.h74 class DragCaretController : private CaretBase {
75 WTF_MAKE_NONCOPYABLE(DragCaretController);
78 static PassOwnPtr<DragCaretController> create();
94 DragCaretController();
/external/chromium_org/third_party/WebKit/Source/core/page/
DPage.h49 class DragCaretController; variable
148 DragCaretController& dragCaretController() const { return *m_dragCaretController; } in dragCaretController()
253 const OwnPtr<DragCaretController> m_dragCaretController;
DPage.cpp105 , m_dragCaretController(DragCaretController::create()) in Page()