Chromium Code Reviews| Index: chrome/common/extensions/extension_manifest_constants.cc |
| diff --git a/chrome/common/extensions/extension_manifest_constants.cc b/chrome/common/extensions/extension_manifest_constants.cc |
| index 91a4259958546d245254ec43442cf6859cf7cb6e..014d4be2f305ebc8ea94b0301c43bee170b79068 100644 |
| --- a/chrome/common/extensions/extension_manifest_constants.cc |
| +++ b/chrome/common/extensions/extension_manifest_constants.cc |
| @@ -96,6 +96,7 @@ const char kRequirements[] = "requirements"; |
| const char kRunAt[] = "run_at"; |
| const char kSandboxedPages[] = "sandbox.pages"; |
| const char kSandboxedPagesCSP[] = "sandbox.content_security_policy"; |
| +const char kScriptBadge[] = "script_badge"; |
| const char kShiftKey[] = "shiftKey"; |
| const char kShortcutKey[] = "shortcutKey"; |
| const char kSignature[] = "signature"; |
| @@ -401,6 +402,8 @@ const char kInvalidSandboxedPage[] = |
| "Invalid value for 'sandbox.pages[*]'."; |
| const char kInvalidSandboxedPagesCSP[] = |
| "Invalid value for 'sandbox.content_security_policy'."; |
| +const char kInvalidScriptBadge[] = |
| + "Invalid value for 'script_badge'."; |
| const char kInvalidSignature[] = |
| "Value 'signature' is missing or invalid."; |
| const char kInvalidTheme[] = |
| @@ -481,6 +484,11 @@ const char kPlatformAppNeedsManifestVersion2[] = |
| "Platform apps need manifest_version set to >= 2"; |
| const char kReservedMessageFound[] = |
| "Reserved key * found in message catalog."; |
| +const char kScriptBadgeRequiresActionBox[] = |
|
not at google - send to devlin
2012/06/18 18:51:24
ditto
|
| + "The script_badge manifest key is turned off by default. " |
| + "You can enable it with the --enable-action-box command-line flag."; |
| +const char kScriptBadgeCannotSpecifyIcon[] = |
| + "Cannot specify a default_icon for a script_badge."; |
| const char kWebRequestConflictsWithLazyBackground[] = |
| "The 'webRequest' API cannot be used with event pages."; |
| #if defined(OS_CHROMEOS) |