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

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

Issue 1336823003: Move chrome::HostDesktopType to ui::HostDesktopType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@base_session_service_delegate_impl
Patch Set: Fix build on Mac and CrOS Created 5 years, 3 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
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 db7a4cc2527594ac7c3a0dbe90b236fde942d06d..210dca93d13c6605ae41305cabffaa6f915776d9 100644
--- a/chrome/browser/ui/views/tabs/window_finder_x11.cc
+++ b/chrome/browser/ui/views/tabs/window_finder_x11.cc
@@ -28,11 +28,11 @@ gfx::NativeWindow GetLocalProcessWindowAtPointAsh(
#endif
gfx::NativeWindow GetLocalProcessWindowAtPoint(
- chrome::HostDesktopType host_desktop_type,
+ ui::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)
+ if (host_desktop_type == ui::HOST_DESKTOP_TYPE_ASH)
return GetLocalProcessWindowAtPointAsh(screen_point, ignore);
#endif

Powered by Google App Engine
This is Rietveld 408576698