| Index: chrome/browser/ui/extensions/app_launch_params.h
|
| diff --git a/chrome/browser/ui/extensions/app_launch_params.h b/chrome/browser/ui/extensions/app_launch_params.h
|
| index a65ed757d8d3dbb086ed52eb53fbf242ef315fb7..3dd20fc2a7ab23a281127e00a58221ed3b686e5e 100644
|
| --- a/chrome/browser/ui/extensions/app_launch_params.h
|
| +++ b/chrome/browser/ui/extensions/app_launch_params.h
|
| @@ -26,13 +26,15 @@ struct AppLaunchParams {
|
| AppLaunchParams(Profile* profile,
|
| const extensions::Extension* extension,
|
| extensions::LaunchContainer container,
|
| - WindowOpenDisposition disposition);
|
| + WindowOpenDisposition disposition,
|
| + extensions::AppLaunchSource source);
|
|
|
| // Helper to create AppLaunchParams using extensions::GetLaunchContainer with
|
| // LAUNCH_TYPE_REGULAR to check for a user-configured container.
|
| AppLaunchParams(Profile* profile,
|
| const extensions::Extension* extension,
|
| - WindowOpenDisposition disposition);
|
| + WindowOpenDisposition disposition,
|
| + extensions::AppLaunchSource source);
|
|
|
| // Helper to create AppLaunchParams using event flags that allows user to
|
| // override the user-configured container using modifier keys, falling back to
|
| @@ -41,7 +43,8 @@ struct AppLaunchParams {
|
| AppLaunchParams(Profile* profile,
|
| const extensions::Extension* extension,
|
| int event_flags,
|
| - chrome::HostDesktopType desktop_type);
|
| + chrome::HostDesktopType desktop_type,
|
| + extensions::AppLaunchSource source);
|
|
|
| ~AppLaunchParams();
|
|
|
|
|