| 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 e19c30d7d1b29ac35c8d33365cb0cfd85d3b3f81..2bb5c956c2e3f48335caa65d294b2a61d08875dd 100644
|
| --- a/chrome/common/extensions/extension_manifest_constants.cc
|
| +++ b/chrome/common/extensions/extension_manifest_constants.cc
|
| @@ -92,6 +92,7 @@ const char kPluginsPublic[] = "public";
|
| const char kPublicKey[] = "key";
|
| const char kRequirements[] = "requirements";
|
| const char kRunAt[] = "run_at";
|
| +const char kSandboxedResources[] = "sandboxed_resources";
|
| const char kShiftKey[] = "shiftKey";
|
| const char kShortcutKey[] = "shortcutKey";
|
| const char kSignature[] = "signature";
|
| @@ -391,6 +392,10 @@ const char kInvalidRequirements[] =
|
| "Invalid value for 'requirements'";
|
| const char kInvalidRunAt[] =
|
| "Invalid value for 'content_scripts[*].run_at'.";
|
| +const char kInvalidSandboxedResourcesList[] =
|
| + "Invalid value for 'sandboxed_resources'.";
|
| +const char kInvalidSandboxedResource[] =
|
| + "Invalid value for 'sandboxed_resources[*]'.";
|
| const char kInvalidSignature[] =
|
| "Value 'signature' is missing or invalid.";
|
| const char kInvalidTheme[] =
|
|
|