Searched defs:local_point (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/chrome/browser/ui/views/download/
H A Ddownload_item_view.cc546 gfx::Point local_point = point; local
547 ConvertPointFromScreen(this, &local_point);
548 ShowContextMenuImpl(local_point, source_type);
/external/chromium_org/ui/aura/
H A Dwindow.cc674 gfx::Point local_point(point_in_root);
675 ConvertPointToTarget(root_window, this, &local_point);
676 return gfx::Rect(GetTargetBounds().size()).Contains(local_point);
679 bool Window::ContainsPoint(const gfx::Point& local_point) const {
680 return gfx::Rect(bounds().size()).Contains(local_point);
683 Window* Window::GetEventHandlerForPoint(const gfx::Point& local_point) { argument
684 return GetWindowForPoint(local_point, true, true);
687 Window* Window::GetTopWindowContainingPoint(const gfx::Point& local_point) { argument
688 return GetWindowForPoint(local_point, false, false);
874 bool Window::HitTest(const gfx::Point& local_point) { argument
968 GetWindowForPoint(const gfx::Point& local_point, bool return_tightest, bool for_event_handling) argument
[all...]
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dtab_strip.cc1130 gfx::Point local_point = tab_in_tab_coordinates; local
1131 ConvertPointToTarget(tab, this, &local_point);
1133 views::View* view = GetEventHandlerForPoint(local_point);
2676 gfx::Point local_point = event->location(); local
2677 Tab* tab = FindTabForEvent(local_point);
2679 ConvertPointToScreen(this, &local_point);
2680 ShowContextMenuForTab(tab, local_point, ui::MENU_SOURCE_TOUCH);

Completed in 113 milliseconds