| Index: chrome/common/extensions/extension_constants.cc
|
| diff --git a/chrome/common/extensions/extension_constants.cc b/chrome/common/extensions/extension_constants.cc
|
| index 477a0e33c3e57e8d2d82875d7aa08214cf524007..2d0e73004b62634c61d79a951393c4101e298dbd 100644
|
| --- a/chrome/common/extensions/extension_constants.cc
|
| +++ b/chrome/common/extensions/extension_constants.cc
|
| @@ -127,6 +127,7 @@ const char kRunAtDocumentIdle[] = "document_idle";
|
| const char kPageActionTypeTab[] = "tab";
|
| const char kPageActionTypePermanent[] = "permanent";
|
| const char kLaunchContainerPanel[] = "panel";
|
| +const char kLaunchContainerShell[] = "shell";
|
| const char kLaunchContainerTab[] = "tab";
|
| const char kLaunchContainerWindow[] = "window";
|
| } // namespace extension_manifest_values
|
| @@ -256,8 +257,10 @@ const char kInvalidKey[] =
|
| "Value 'key' is missing or invalid.";
|
| const char kInvalidLaunchContainer[] =
|
| "Invalid value for 'app.launch.container'.";
|
| +const char kInvalidLaunchContainerForNonPlatform[] =
|
| + "'app.launch.container' = 'shell' can only be used with platform_app.";
|
| const char kInvalidLaunchContainerForPlatform[] =
|
| - "platform_app requires 'app.launch.container' == 'panel'.";
|
| + "platform_app requires 'app.launch.container' == 'shell'.";
|
| const char kInvalidLaunchHeight[] =
|
| "Invalid value for 'app.launch.height'.";
|
| const char kInvalidLaunchHeightContainer[] =
|
|
|