Searched refs:drag_controller_ (Results 1 – 4 of 4) sorted by relevance
209 return drag_controller_.get() != NULL; in IsDragSessionActive()319 drag_controller_.reset(new DraggedTabController()); in MaybeStartDrag()341 drag_controller_->Init(this, tab, tabs, gfx::Point(x, y), in MaybeStartDrag()349 if (drag_controller_.get()) { in ContinueDrag()350 bool started_drag = drag_controller_->started_drag(); in ContinueDrag()351 drag_controller_->Drag(); in ContinueDrag()352 if (drag_controller_->started_drag() && !started_drag) { in ContinueDrag()361 if (!drag_controller_.get()) in EndDrag()363 bool started_drag = drag_controller_->started_drag(); in EndDrag()364 drag_controller_->EndDrag(canceled); in EndDrag()[all …]
263 scoped_ptr<DraggedTabController> drag_controller_; variable
860 drag_controller_.reset(); in DestroyDragController()957 tab = drag_controller_->GetDragSourceTabForContents( in TabInsertedAt()1103 if (drag_controller_.get()) in IsTabDetached()1104 return drag_controller_->IsTabDetached(tab); in IsTabDetached()1189 drag_controller_.reset(new DraggedTabControllerGtk(tab, this)); in MaybeStartDrag()1190 drag_controller_->CaptureDragInfo(point); in MaybeStartDrag()1197 if (drag_controller_.get()) in ContinueDrag()1198 drag_controller_->Drag(); in ContinueDrag()1202 return drag_controller_.get() ? drag_controller_->EndDrag(canceled) : false; in EndDrag()1304 if (!IsDragSessionActive() || !drag_controller_->IsDragSourceTab(removed)) { in RemoveTabAt()
55 bool IsDragSessionActive() const { return drag_controller_.get() != NULL; } in IsDragSessionActive()454 scoped_ptr<DraggedTabControllerGtk> drag_controller_; variable