Home
last modified time | relevance | path

Searched refs:dragged_bounds (Results 1 – 4 of 4) sorted by relevance

/external/chromium/chrome/browser/ui/views/tabs/
Ddragged_tab_controller.cc981 const gfx::Rect& dragged_bounds) const { in GetInsertionIndexForDraggedBounds()
994 if (dragged_bounds.x() >= right_half.x() && in GetInsertionIndexForDraggedBounds()
995 dragged_bounds.x() < right_half.right()) { in GetInsertionIndexForDraggedBounds()
998 } else if (dragged_bounds.x() >= left_half.x() && in GetInsertionIndexForDraggedBounds()
999 dragged_bounds.x() < left_half.right()) { in GetInsertionIndexForDraggedBounds()
1008 if (dragged_bounds.y() < mid_y) { in GetInsertionIndexForDraggedBounds()
1011 } else if (dragged_bounds.y() >= mid_y && dragged_bounds.y() < max_y) { in GetInsertionIndexForDraggedBounds()
1019 dragged_bounds.right() > right_tab_x) || in GetInsertionIndexForDraggedBounds()
1021 dragged_bounds.y() >= bottom_tab_y)) { in GetInsertionIndexForDraggedBounds()
Ddragged_tab_controller.h220 int GetInsertionIndexForDraggedBounds(const gfx::Rect& dragged_bounds) const;
/external/chromium/chrome/browser/ui/gtk/tabs/
Ddragged_tab_controller_gtk.cc454 const gfx::Rect& dragged_bounds, in GetInsertionIndexForDraggedBounds() argument
457 int dragged_bounds_x = base::i18n::IsRTL() ? dragged_bounds.right() : in GetInsertionIndexForDraggedBounds()
458 dragged_bounds.x(); in GetInsertionIndexForDraggedBounds()
491 dragged_bounds.x() < right_tab_x : in GetInsertionIndexForDraggedBounds()
492 dragged_bounds.right() > right_tab_x; in GetInsertionIndexForDraggedBounds()
Ddragged_tab_controller_gtk.h143 int GetInsertionIndexForDraggedBounds(const gfx::Rect& dragged_bounds,