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

Unified Diff: chrome/browser/ui/views/tabs/window_finder_win.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_win.cc
diff --git a/chrome/browser/ui/views/tabs/window_finder_win.cc b/chrome/browser/ui/views/tabs/window_finder_win.cc
index 2596c1888f35fef411b22f461b05a9ef1c421ef9..d81fe3ef87b158b4c7d8e69d2c7e8d9420fd4dd1 100644
--- a/chrome/browser/ui/views/tabs/window_finder_win.cc
+++ b/chrome/browser/ui/views/tabs/window_finder_win.cc
@@ -260,11 +260,11 @@ std::set<HWND> RemapIgnoreSet(const std::set<gfx::NativeView>& ignore) {
} // namespace
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
return LocalProcessWindowFinder::GetProcessWindowAtPoint(

Powered by Google App Engine
This is Rietveld 408576698