| Index: chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
|
| diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
|
| index b8b61816986ae08fd17623393b2d92d3a207a801..ac40fa9c3d67e2d73d8c1a1fe96f10174400d7c9 100644
|
| --- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
|
| +++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
|
| @@ -993,7 +993,7 @@ class V1App : public TestBrowserWindow {
|
| gfx::Rect(10, 10, 20, 30));
|
| Browser::CreateParams params = Browser::CreateParams::CreateForApp(
|
| kCrxAppPrefix + app_name, true /* trusted_source */, gfx::Rect(),
|
| - profile);
|
| + profile, true);
|
| params.window = this;
|
| browser_.reset(new Browser(params));
|
| chrome::AddTabAt(browser_.get(), GURL(), 0, true);
|
| @@ -2312,7 +2312,7 @@ TEST_F(MultiProfileMultiBrowserShelfLayoutChromeLauncherControllerImplTest,
|
| multi_user_util::GetAccountIdFromProfile(profile());
|
|
|
| // Create a browser window with a native window for the current user.
|
| - Browser::CreateParams params(profile());
|
| + Browser::CreateParams params(profile(), true);
|
| std::unique_ptr<Browser> browser(
|
| chrome::CreateBrowserWithAuraTestWindowForParams(nullptr, ¶ms));
|
| BrowserWindow* browser_window = browser->window();
|
|
|