| 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 0ec615fc2bc865892d0ff72655e7071b1bd7e412..9da0bc8bfecf139173693e9760af73606838479d 100644
 | 
| --- a/chrome/browser/ui/ash/window_positioner_unittest.cc
 | 
| +++ b/chrome/browser/ui/ash/window_positioner_unittest.cc
 | 
| @@ -68,14 +68,12 @@ 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_);
 | 
|    browser_ = chrome::CreateBrowserWithAuraTestWindowForParams(
 | 
|        std::move(dummy_window), &window_params);
 | 
|  
 | 
|    // Creating a browser for the popup.
 | 
| -  Browser::CreateParams popup_params(Browser::TYPE_POPUP, &profile_,
 | 
| -                                     chrome::HOST_DESKTOP_TYPE_ASH);
 | 
| +  Browser::CreateParams popup_params(Browser::TYPE_POPUP, &profile_);
 | 
|    browser_popup_ = chrome::CreateBrowserWithAuraTestWindowForParams(
 | 
|        std::move(dummy_popup), &popup_params);
 | 
|  
 | 
| 
 |