| Index: chrome/browser/ui/startup/startup_browser_creator.cc
|
| diff --git a/chrome/browser/ui/startup/startup_browser_creator.cc b/chrome/browser/ui/startup/startup_browser_creator.cc
|
| index 6b3f8276f2877f0dfd3dd10cca04dc79a3061c95..4d5cdce43c82e113f6c4d300932aca985d9d0417 100644
|
| --- a/chrome/browser/ui/startup/startup_browser_creator.cc
|
| +++ b/chrome/browser/ui/startup/startup_browser_creator.cc
|
| @@ -501,9 +501,9 @@ bool StartupBrowserCreator::ProcessCmdLineImpl(
|
| net::SetExplicitlyAllowedPorts(allowed_ports);
|
| }
|
|
|
| - if (command_line.HasSwitch(switches::kInstallFromWebstore)) {
|
| + if (command_line.HasSwitch(switches::kInstallEphemeralAppFromWebstore)) {
|
| extensions::StartupHelper helper;
|
| - helper.InstallFromWebstore(command_line, last_used_profile);
|
| + helper.InstallEphemeralApp(command_line, last_used_profile);
|
| // Nothing more needs to be done, so return false to stop launching and
|
| // quit.
|
| return false;
|
| @@ -527,12 +527,6 @@ bool StartupBrowserCreator::ProcessCmdLineImpl(
|
| return false;
|
| }
|
|
|
| - if (command_line.HasSwitch(switches::kLimitedInstallFromWebstore)) {
|
| - extensions::StartupHelper helper;
|
| - helper.LimitedInstallFromWebstore(command_line, last_used_profile,
|
| - base::Bind(&base::DoNothing));
|
| - }
|
| -
|
| #if defined(OS_CHROMEOS)
|
|
|
| #if defined(USE_ATHENA)
|
|
|