Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8852)

Unified Diff: chrome/browser/ui/views/tabs/window_finder_x11.cc

Issue 1697243002: Remove HostDesktopType from window_finder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@metro-mode-26
Patch Set: . Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/views/tabs/window_finder_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/tabs/window_finder_x11.cc
diff --git a/chrome/browser/ui/views/tabs/window_finder_x11.cc b/chrome/browser/ui/views/tabs/window_finder_x11.cc
index 313f412b18ae89e3e5e4cc68dea74c552bc1344c..0fa61919b154bd336657090dd0e5d0d07e48cea1 100644
--- a/chrome/browser/ui/views/tabs/window_finder_x11.cc
+++ b/chrome/browser/ui/views/tabs/window_finder_x11.cc
@@ -20,21 +20,9 @@ gfx::Point DIPToPixelPoint(const gfx::Point& dip_point) {
} // anonymous namespace
-#if defined(USE_ASH)
-gfx::NativeWindow GetLocalProcessWindowAtPointAsh(
- const gfx::Point& screen_point,
- const std::set<gfx::NativeWindow>& ignore);
-#endif
-
gfx::NativeWindow GetLocalProcessWindowAtPoint(
- chrome::HostDesktopType host_desktop_type,
const gfx::Point& screen_point,
const std::set<gfx::NativeWindow>& ignore) {
-#if defined(USE_ASH)
- if (host_desktop_type == chrome::HOST_DESKTOP_TYPE_ASH)
- return GetLocalProcessWindowAtPointAsh(screen_point, ignore);
-#endif
-
// The X11 server is the canonical state of what the window stacking order
// is.
views::X11TopmostWindowFinder finder;
« no previous file with comments | « chrome/browser/ui/views/tabs/window_finder_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698