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

Unified Diff: chrome/browser/ui/ash/window_positioner_unittest.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/ash/window_positioner_unittest.cc
diff --git a/chrome/browser/ui/ash/window_positioner_unittest.cc b/chrome/browser/ui/ash/window_positioner_unittest.cc
index 0b70440ad77c2c2a5d4037c99595d005c6b5cb9c..7e8bcbb2ff1aef7b8b69fe3a87cfad0495b21551 100644
--- a/chrome/browser/ui/ash/window_positioner_unittest.cc
+++ b/chrome/browser/ui/ash/window_positioner_unittest.cc
@@ -66,14 +66,13 @@ void WindowPositionerTest::SetUp() {
dummy_popup->SetBounds(gfx::Rect(16, 32, 128, 256));
// Create a browser for the window.
- Browser::CreateParams window_params(&profile_,
- chrome::HOST_DESKTOP_TYPE_ASH);
+ Browser::CreateParams window_params(&profile_, ui::HOST_DESKTOP_TYPE_ASH);
browser_ = chrome::CreateBrowserWithAuraTestWindowForParams(
dummy_window.Pass(), &window_params);
// Creating a browser for the popup.
Browser::CreateParams popup_params(Browser::TYPE_POPUP, &profile_,
- chrome::HOST_DESKTOP_TYPE_ASH);
+ ui::HOST_DESKTOP_TYPE_ASH);
browser_popup_ = chrome::CreateBrowserWithAuraTestWindowForParams(
dummy_popup.Pass(), &popup_params);

Powered by Google App Engine
This is Rietveld 408576698