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 ad5e4463af89a82b7a6fb50802c4e549f287ef97..d5fdb7b2084cca560eb4cd4b3446c061d22fe4d9 100644 |
| --- a/chrome/common/extensions/extension_manifest_constants.cc |
| +++ b/chrome/common/extensions/extension_manifest_constants.cc |
| @@ -452,6 +452,11 @@ const char kInvalidWebURLs[] = |
| "Invalid value for 'app.urls'."; |
| const char kInvalidZipHash[] = |
| "Required key 'zip_hash' is missing or invalid."; |
| +const char kInsecureContentSecurityPolicy[] = |
| + "Invalid value for 'content_security_policy': 'script-src' and 'object-src'" |
| + " can only contain secure resources. You may whitelist HTTPS origins," |
| + " \"chrome-extension:\" resources, \"'self'\", http://127.0.0.1, and" |
| + " http://localhost)."; |
|
abarth-chromium
2012/08/27 06:51:57
It's confusing when you're using single and when y
|
| const char kLaunchPathAndExtentAreExclusive[] = |
| "The 'app.launch.local_path' and 'app.urls' keys cannot both be set."; |
| const char kLaunchPathAndURLAreExclusive[] = |