| Index: chrome/common/extensions/extension_constants.cc
|
| diff --git a/chrome/common/extensions/extension_constants.cc b/chrome/common/extensions/extension_constants.cc
|
| index 621fb63f50848f7c5344a1755cb0f3970649c461..53c5496b5906e31f752a10483a1e115ccf4f0fba 100644
|
| --- a/chrome/common/extensions/extension_constants.cc
|
| +++ b/chrome/common/extensions/extension_constants.cc
|
| @@ -80,6 +80,7 @@ const char* kPlugins = "plugins";
|
| const char* kPluginsPath = "path";
|
| const char* kPluginsPublic = "public";
|
| const char* kPublicKey = "key";
|
| +const char* kRequirements = "requirements";
|
| const char* kRunAt = "run_at";
|
| const char* kShiftKey = "shiftKey";
|
| const char* kShortcutKey = "shortcutKey";
|
| @@ -338,6 +339,10 @@ const char* kInvalidPluginsPath =
|
| "Invalid value for 'plugins[*].path'.";
|
| const char* kInvalidPluginsPublic =
|
| "Invalid value for 'plugins[*].public'.";
|
| +const char* kInvalidRequirement =
|
| + "Invalid value for requirement \"*\"";
|
| +const char* kInvalidRequirements =
|
| + "Invalid value for 'requirements'";
|
| const char* kInvalidRunAt =
|
| "Invalid value for 'content_scripts[*].run_at'.";
|
| const char* kInvalidSidebar =
|
|
|