| Index: chrome/common/chrome_switches.cc
|
| diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
|
| index 35d3d8b52cf4410f04b39b2da3ea7df1d08ae1a0..dc2a0262c40295f3921226c9b3d32e1d416cf3df 100644
|
| --- a/chrome/common/chrome_switches.cc
|
| +++ b/chrome/common/chrome_switches.cc
|
| @@ -742,7 +742,9 @@ const char kInstallChromeApp[] = "install-chrome-app";
|
|
|
| // Causes Chrome to attempt to get metadata from the webstore for the
|
| // app/extension ID given, and then prompt the user to download and install it.
|
| -const char kInstallFromWebstore[] = "install-from-webstore";
|
| +// This is allowed *only* for ephemeral apps. All other ids will be ignored.
|
| +const char kInstallEphemeralAppFromWebstore[] =
|
| + "install-ephemeral-app-from-webstore";
|
|
|
| // Marks a renderer as an Instant process.
|
| const char kInstantProcess[] = "instant-process";
|
| @@ -767,10 +769,6 @@ const char kKioskMode[] = "kiosk";
|
| // See http://crbug.com/31395.
|
| const char kKioskModePrinting[] = "kiosk-printing";
|
|
|
| -// Causes Chrome to attempt to get metadata from the webstore for the
|
| -// given item, and then prompt the user to download and install it.
|
| -const char kLimitedInstallFromWebstore[] = "limited-install-from-webstore";
|
| -
|
| // Comma-separated list of directories with component extensions to load.
|
| const char kLoadComponentExtension[] = "load-component-extension";
|
|
|
|
|