Index: chrome/browser/ui/app_list/app_list_controller_delegate_impl.cc |
diff --git a/chrome/browser/ui/app_list/app_list_controller_delegate_impl.cc b/chrome/browser/ui/app_list/app_list_controller_delegate_impl.cc |
index c84f4d5f026b8a6d3849b579aa636e6e01ef46b2..c050c1f7928e17e697e197f3e2e018b5eaa112b2 100644 |
--- a/chrome/browser/ui/app_list/app_list_controller_delegate_impl.cc |
+++ b/chrome/browser/ui/app_list/app_list_controller_delegate_impl.cc |
@@ -111,8 +111,8 @@ void AppListControllerDelegateImpl::LaunchApp( |
int event_flags) { |
AppListServiceImpl::RecordAppListAppLaunch(); |
- AppLaunchParams params(profile, extension, NEW_FOREGROUND_TAB, |
- extensions::SOURCE_APP_LAUNCHER); |
+ AppLaunchParams params = CreateAppLaunchParamsUserContainer( |
+ profile, extension, NEW_FOREGROUND_TAB, extensions::SOURCE_APP_LAUNCHER); |
if (source != LAUNCH_FROM_UNKNOWN && |
extension->id() == extensions::kWebStoreAppId) { |
@@ -124,7 +124,6 @@ void AppListControllerDelegateImpl::LaunchApp( |
AppListSourceToString(source)); |
} |
- FillLaunchParams(¶ms); |
OpenApplication(params); |
} |
@@ -138,8 +137,6 @@ bool AppListControllerDelegateImpl::ShouldShowUserIcon() { |
return g_browser_process->profile_manager()->GetNumberOfProfiles() > 1; |
} |
-void AppListControllerDelegateImpl::FillLaunchParams(AppLaunchParams* params) {} |
- |
void AppListControllerDelegateImpl::OnCloseCreateShortcutsPrompt( |
bool created) { |
OnCloseChildDialog(); |