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

  /external/chromium/chrome/browser/ui/gtk/tabs/
dragged_tab_controller_gtk.cc 322 gfx::Rect tabstrip_bounds = local
324 if (screen_point.x() < tabstrip_bounds.right() &&
325 screen_point.x() >= tabstrip_bounds.x()) {
328 int upper_threshold = tabstrip_bounds.bottom() + kVerticalDetachMagnetism;
329 int lower_threshold = tabstrip_bounds.y() - kVerticalDetachMagnetism;
512 gfx::Rect tabstrip_bounds = local
517 if (x < tabstrip_bounds.x() && screen_point.x() >= tabstrip_bounds.x())
518 x = tabstrip_bounds.x();
522 int vertical_detach_point = tabstrip_bounds.y() - vertical_drag_magnetism
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
dragged_tab_controller.cc 831 gfx::Rect tabstrip_bounds = GetViewScreenBounds(tabstrip); local
833 if (screen_point.x() < tabstrip_bounds.right() &&
834 screen_point.x() >= tabstrip_bounds.x()) {
837 int upper_threshold = tabstrip_bounds.bottom() + kVerticalDetachMagnetism;
838 int lower_threshold = tabstrip_bounds.y() - kVerticalDetachMagnetism;
845 if (screen_point.y() < tabstrip_bounds.bottom() &&
846 screen_point.y() >= tabstrip_bounds.y()) {
847 int upper_threshold = tabstrip_bounds.right() +
849 int lower_threshold = tabstrip_bounds.x() - kHorizontalDetachMagnetism;
    [all...]

Completed in 118 milliseconds