Searched refs:cursor_point (Results 1 - 5 of 5) sorted by relevance

/external/chromium/chrome/browser/ui/views/tabs/
H A Ddragged_tab_controller.cc571 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
[all...]
H A Dbase_tab_strip.cc99 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/
H A Dautomation_provider_win.cc62 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/
H A Ddragged_tab_controller_gtk.cc199 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());
H A Dtab_strip_gtk.cc1513 gfx::Point cursor_point(x, y);
1515 return bds.Contains(cursor_point);

Completed in 101 milliseconds