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

Unified Diff: chrome/test/base/interactive_test_utils_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/test/base/interactive_test_utils_win.cc
diff --git a/chrome/test/base/interactive_test_utils_win.cc b/chrome/test/base/interactive_test_utils_win.cc
index 4ab9b832850a54f307801babf44226f365c03434..610f122b8569a51993ee1edbcdd926c46b8b52e1 100644
--- a/chrome/test/base/interactive_test_utils_win.cc
+++ b/chrome/test/base/interactive_test_utils_win.cc
@@ -21,7 +21,7 @@ namespace ui_test_utils {
void HideNativeWindow(gfx::NativeWindow window) {
if (chrome::GetHostDesktopTypeForNativeWindow(window) ==
- chrome::HOST_DESKTOP_TYPE_ASH) {
+ ui::HOST_DESKTOP_TYPE_ASH) {
HideNativeWindowAura(window);
return;
}
@@ -31,7 +31,7 @@ void HideNativeWindow(gfx::NativeWindow window) {
bool ShowAndFocusNativeWindow(gfx::NativeWindow window) {
if (chrome::GetHostDesktopTypeForNativeWindow(window) ==
- chrome::HOST_DESKTOP_TYPE_ASH)
+ ui::HOST_DESKTOP_TYPE_ASH)
ShowAndFocusNativeWindowAura(window);
window->Show();
// Always make sure the window hosting ash is visible and focused.

Powered by Google App Engine
This is Rietveld 408576698