HomeSort by relevance Sort by last modified time
    Searched refs:TabDragController (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_drag_controller.cc 65 static TabDragController* instance_ = NULL;
159 TabDragController::TabDragData::TabDragData()
167 TabDragController::TabDragData::~TabDragData() {
171 // TabDragController, public:
174 const int TabDragController::kTouchVerticalDetachMagnetism = 50;
177 const int TabDragController::kVerticalDetachMagnetism = 15;
179 TabDragController::TabDragController()
214 TabDragController::~TabDragController() {
    [all...]
tab_drag_controller_interactive_uitest_win.cc 63 EXPECT_FALSE(TabDragController::IsActive());
93 ASSERT_TRUE(TabDragController::IsActive());
100 ASSERT_TRUE(TabDragController::IsActive());
107 ASSERT_FALSE(TabDragController::IsActive());
131 ASSERT_FALSE(TabDragController::IsActive());
158 ASSERT_TRUE(TabDragController::IsActive());
165 ASSERT_FALSE(TabDragController::IsActive());
187 ASSERT_TRUE(TabDragController::IsActive());
194 ASSERT_FALSE(TabDragController::IsActive());
219 ASSERT_FALSE(TabDragController::IsActive())
    [all...]
tab_drag_controller.h 39 // TabDragController is responsible for managing the tab dragging session. When
40 // the user presses the mouse on a tab a new TabDragController is created and
42 // TabDragController starts a drag session. The drag session is completed when
43 // EndDrag() is invoked (or the TabDragController is destroyed).
45 // While dragging within a tab strip TabDragController sets the bounds of the
50 class TabDragController : public content::WebContentsDelegate,
80 TabDragController();
81 virtual ~TabDragController();
83 // Initializes TabDragController to drag the tabs in |tabs| originating from
103 // NOTE: this returns false if the TabDragController is in the process o
    [all...]
tab_drag_controller_interactive_uitest.cc 198 return std::max(TabDragController::kTouchVerticalDetachMagnetism,
199 TabDragController::kVerticalDetachMagnetism) +
336 EXPECT_TRUE(TabDragController::IsActive());
342 EXPECT_FALSE(TabDragController::IsActive());
550 EXPECT_FALSE(TabDragController::IsActive());
566 ASSERT_TRUE(TabDragController::IsActive());
610 ASSERT_TRUE(TabDragController::IsActive());
617 ASSERT_FALSE(TabDragController::IsActive());
686 ASSERT_FALSE(TabDragController::IsActive());
753 ASSERT_FALSE(TabDragController::IsActive())
    [all...]
tab_strip.h 27 class TabDragController;
265 friend class TabDragController;
401 // Used by TabDragController when the user starts or stops dragging tabs.
404 // Invoked when TabDragController detaches a set of tabs.
407 // Used by TabDragController when the user stops dragging tabs. |move_only| is
408 // true if the move behavior is TabDragController::MOVE_VISIBILE_TABS.
421 void OwnDragController(TabDragController* controller);
423 // Destroys the current TabDragController. This cancel the existing drag
427 // Releases ownership of the current TabDragController.
428 TabDragController* ReleaseDragController()
    [all...]
tab_strip.cc 219 TabDragController::EventSource EventSourceFromEvent(
221 return event.IsGestureEvent() ? TabDragController::EVENT_SOURCE_TOUCH :
222 TabDragController::EVENT_SOURCE_MOUSE;
635 // could allow this and make TabDragController update itself during the add,
687 if (TabDragController::IsAttachedTo(this) &&
    [all...]

Completed in 195 milliseconds