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

/external/chromium_org/ui/views/
H A Ddrag_controller.h21 // DragController is responsible for writing drag data for a view, as well as
22 // supplying the supported drag operations. Use DragController if you don't
24 class VIEWS_EXPORT DragController { class in namespace:views
44 virtual ~DragController() {}
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDragController.h54 class DragController { class in namespace:WebCore
55 WTF_MAKE_NONCOPYABLE(DragController); WTF_MAKE_FAST_ALLOCATED;
57 ~DragController();
59 static PassOwnPtr<DragController> create(Page*, DragClient*);
80 DragController(Page*, DragClient*);
H A DDragController.cpp28 #include "core/page/DragController.h"
87 const int DragController::DragIconRightInset = 7;
88 const int DragController::DragIconBottomInset = 3;
131 DragController::DragController(Page* page, DragClient* client) function in class:WebCore::DragController
144 DragController::~DragController()
148 PassOwnPtr<DragController> DragController::create(Page* page, DragClient* client)
150 return adoptPtr(new DragController(pag
[all...]

Completed in 104 milliseconds