summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/extension_manifest_constants.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/extensions/extension_manifest_constants.cc')
-rw-r--r--chrome/common/extensions/extension_manifest_constants.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome/common/extensions/extension_manifest_constants.cc b/chrome/common/extensions/extension_manifest_constants.cc
index e19c30d..2fda6da 100644
--- a/chrome/common/extensions/extension_manifest_constants.cc
+++ b/chrome/common/extensions/extension_manifest_constants.cc
@@ -92,6 +92,8 @@ const char kPluginsPublic[] = "public";
const char kPublicKey[] = "key";
const char kRequirements[] = "requirements";
const char kRunAt[] = "run_at";
+const char kSandboxedPages[] = "sandboxed_pages.pages";
+const char kSandboxedPagesCSP[] = "sandboxed_pages.content_security_policy";
const char kShiftKey[] = "shiftKey";
const char kShortcutKey[] = "shortcutKey";
const char kSignature[] = "signature";
@@ -391,6 +393,12 @@ const char kInvalidRequirements[] =
"Invalid value for 'requirements'";
const char kInvalidRunAt[] =
"Invalid value for 'content_scripts[*].run_at'.";
+const char kInvalidSandboxedPagesList[] =
+ "Invalid value for 'sandboxed_pages.pages'.";
+const char kInvalidSandboxedPage[] =
+ "Invalid value for 'sandboxed_pages.pages[*]'.";
+const char kInvalidSandboxedPagesCSP[] =
+ "Invalid value for 'sandboxed_pages.content_security_policy'.";
const char kInvalidSignature[] =
"Value 'signature' is missing or invalid.";
const char kInvalidTheme[] =