Home
last modified time | relevance | path

Searched refs:drag_window_ (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/ash/drag_drop/
Ddrag_drop_controller.cc135 drag_window_(NULL), in DragDropController()
218 drag_window_ = NULL; in StartDragAndDrop()
247 if (target != drag_window_) { in DragUpdate()
248 if (drag_window_) { in DragUpdate()
250 aura::client::GetDragDropDelegate(drag_window_); in DragUpdate()
253 if (drag_window_ != drag_source_window_) in DragUpdate()
254 drag_window_->RemoveObserver(this); in DragUpdate()
256 drag_window_ = target; in DragUpdate()
258 if (drag_window_ != drag_source_window_) in DragUpdate()
259 drag_window_->AddObserver(this); in DragUpdate()
[all …]
Ddrag_drop_controller.h104 aura::Window* drag_window_; variable
Ddrag_drop_controller_unittest.cc314 return drag_drop_controller_->drag_window_; in GetDragWindow()