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

  /external/chromium_org/ui/views/
drag_controller.h 21 // 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 {
44 virtual ~DragController() {}
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragController.h 54 class DragController {
55 WTF_MAKE_NONCOPYABLE(DragController); WTF_MAKE_FAST_ALLOCATED;
57 ~DragController();
59 static PassOwnPtr<DragController> create(Page*, DragClient*);
76 DragController(Page*, DragClient*);
DragController.cpp 28 #include "core/page/DragController.h"
87 const int DragController::DragIconRightInset = 7;
88 const int DragController::DragIconBottomInset = 3;
124 DragController::DragController(Page* page, DragClient* client)
137 DragController::~DragController()
141 PassOwnPtr<DragController> DragController::create(Page* page, DragClient* client)
143 return adoptPtr(new DragController(page, client))
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragController.java 43 public class DragController {
44 private static final String TAG = "Launcher.DragController";
132 * @param dragAction The drag action: either {@link DragController#DRAG_ACTION_MOVE}
133 * or {@link DragController#DRAG_ACTION_COPY}
148 public DragController(Launcher launcher) {
422 Log.d(Launcher.TAG, "DragController.onInterceptTouchEvent " + ev + " mDragging="
  /packages/apps/Launcher3/src/com/android/launcher3/
DragController.java 43 public class DragController {
44 private static final String TAG = "Launcher.DragController";
129 * @param dragAction The drag action: either {@link DragController#DRAG_ACTION_MOVE}
130 * or {@link DragController#DRAG_ACTION_COPY}
145 public DragController(Launcher launcher) {
419 Log.d(Launcher.TAG, "DragController.onInterceptTouchEvent " + ev + " mDragging="

Completed in 440 milliseconds