| Index: chrome/browser/ui/app_list/app_list_controller_delegate.cc
|
| diff --git a/chrome/browser/ui/app_list/app_list_controller_delegate.cc b/chrome/browser/ui/app_list/app_list_controller_delegate.cc
|
| index 8127a3e2dca329153286f0270f9776ba7c8688f5..17140ef75f3c5fa918f8306228311855451075af 100644
|
| --- a/chrome/browser/ui/app_list/app_list_controller_delegate.cc
|
| +++ b/chrome/browser/ui/app_list/app_list_controller_delegate.cc
|
| @@ -143,12 +143,9 @@ void AppListControllerDelegate::ShowAppInWebStore(
|
| is_search_result ?
|
| AppListControllerDelegate::LAUNCH_FROM_APP_LIST_SEARCH :
|
| AppListControllerDelegate::LAUNCH_FROM_APP_LIST);
|
| - OpenURL(profile,
|
| - net::AppendQueryParameter(url,
|
| - extension_urls::kWebstoreSourceField,
|
| - source),
|
| - ui::PAGE_TRANSITION_LINK,
|
| - CURRENT_TAB);
|
| + OpenURL(profile, net::AppendQueryParameter(
|
| + url, extension_urls::kWebstoreSourceField, source),
|
| + ui::PAGE_TRANSITION_LINK, WindowOpenDisposition::CURRENT_TAB);
|
| }
|
|
|
| bool AppListControllerDelegate::HasOptionsPage(
|
| @@ -166,10 +163,8 @@ void AppListControllerDelegate::ShowOptionsPage(
|
| if (!extension)
|
| return;
|
|
|
| - OpenURL(profile,
|
| - extensions::OptionsPageInfo::GetOptionsPage(extension),
|
| - ui::PAGE_TRANSITION_LINK,
|
| - CURRENT_TAB);
|
| + OpenURL(profile, extensions::OptionsPageInfo::GetOptionsPage(extension),
|
| + ui::PAGE_TRANSITION_LINK, WindowOpenDisposition::CURRENT_TAB);
|
| }
|
|
|
| extensions::LaunchType AppListControllerDelegate::GetExtensionLaunchType(
|
|
|