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

  /external/chromium/chrome/browser/ui/views/tabs/
dragged_tab_controller.cc 571 gfx::Point cursor_point = GetCursorScreenPoint(); local
575 return cursor_point;
580 cursor_point);
582 if (cursor_point.x() < work_area.x())
583 cursor_point.set_x(work_area.x());
584 else if (cursor_point.x() > work_area.right())
585 cursor_point.set_x(work_area.right());
586 if (cursor_point.y() < work_area.y())
587 cursor_point.set_y(work_area.y());
588 else if (cursor_point.y() > work_area.bottom()
    [all...]
base_tab_strip.cc 99 POINT cursor_point = {GET_X_LPARAM(pos), GET_Y_LPARAM(pos)}; local
100 MapWindowPoints(NULL, widget->GetNativeView(), &cursor_point, 1);
106 MAKELPARAM(cursor_point.x, cursor_point.y));
  /external/chromium/chrome/browser/automation/
automation_provider_win.cc 62 gfx::Point cursor_point(pos);
63 DCHECK_EQ(point.x, cursor_point.x());
64 DCHECK_EQ(point.y, cursor_point.y());
  /external/chromium/chrome/browser/ui/gtk/tabs/
dragged_tab_controller_gtk.cc 199 gfx::Point cursor_point = GetCursorScreenPoint(); local
200 return gfx::Point(cursor_point.x() - window_create_point_.x(),
201 cursor_point.y() - window_create_point_.y());
tab_strip_gtk.cc     [all...]

Completed in 45 milliseconds