| Index: chrome/browser/ui/ash/launcher/chrome_launcher_controller_unittest.cc
 | 
| diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_unittest.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_unittest.cc
 | 
| index 63b1f27280ac40ef4fef393ceb4e5bc4e562a388..28bfc32ce2e95f54cfd282b26b600e113047139a 100644
 | 
| --- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_unittest.cc
 | 
| +++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_unittest.cc
 | 
| @@ -698,12 +698,9 @@ class V1App : public TestBrowserWindow {
 | 
|      aura::client::ParentWindowWithContext(native_window_.get(),
 | 
|                                            ash::Shell::GetPrimaryRootWindow(),
 | 
|                                            gfx::Rect(10, 10, 20, 30));
 | 
| -    Browser::CreateParams params =
 | 
| -        Browser::CreateParams::CreateForApp(kCrxAppPrefix + app_name,
 | 
| -                                            true /* trusted_source */,
 | 
| -                                            gfx::Rect(),
 | 
| -                                            profile,
 | 
| -                                            chrome::HOST_DESKTOP_TYPE_ASH);
 | 
| +    Browser::CreateParams params = Browser::CreateParams::CreateForApp(
 | 
| +        kCrxAppPrefix + app_name, true /* trusted_source */, gfx::Rect(),
 | 
| +        profile);
 | 
|      params.window = this;
 | 
|      browser_.reset(new Browser(params));
 | 
|      chrome::AddTabAt(browser_.get(), GURL(), 0, true);
 | 
| @@ -1542,7 +1539,7 @@ TEST_F(MultiProfileMultiBrowserShelfLayoutChromeLauncherControllerTest,
 | 
|        multi_user_util::GetAccountIdFromProfile(profile());
 | 
|  
 | 
|    // Create a browser window with a native window for the current user.
 | 
| -  Browser::CreateParams params(profile(), chrome::HOST_DESKTOP_TYPE_ASH);
 | 
| +  Browser::CreateParams params(profile());
 | 
|    scoped_ptr<Browser> browser(
 | 
|        chrome::CreateBrowserWithAuraTestWindowForParams(nullptr, ¶ms));
 | 
|    BrowserWindow* browser_window = browser->window();
 | 
| 
 |