summaryrefslogtreecommitdiffstats
path: root/extensions/common/manifest_handlers
diff options
context:
space:
mode:
authorrockot <rockot@chromium.org>2015-12-01 13:45:33 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-01 21:46:15 +0000
commitdbadb4c822a748211b634f4807e65e8ef9fc0b93 (patch)
treed2dfe598ebdc0916a55e0812c086fb45ad0ff91c /extensions/common/manifest_handlers
parent01bb339a8abf650326249baae9ab5c37ebb04b5e (diff)
downloadchromium_src-dbadb4c822a748211b634f4807e65e8ef9fc0b93.zip
chromium_src-dbadb4c822a748211b634f4807e65e8ef9fc0b93.tar.gz
chromium_src-dbadb4c822a748211b634f4807e65e8ef9fc0b93.tar.bz2
[Extensions] Add allow-modals to the default sandbox CSP
BUG=560226 R=rdevlin.cronin@chromium.org Review URL: https://codereview.chromium.org/1482243004 Cr-Commit-Position: refs/heads/master@{#362509}
Diffstat (limited to 'extensions/common/manifest_handlers')
-rw-r--r--extensions/common/manifest_handlers/sandboxed_page_info.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/common/manifest_handlers/sandboxed_page_info.cc b/extensions/common/manifest_handlers/sandboxed_page_info.cc
index 7da5483..0fc6589 100644
--- a/extensions/common/manifest_handlers/sandboxed_page_info.cc
+++ b/extensions/common/manifest_handlers/sandboxed_page_info.cc
@@ -22,7 +22,7 @@ namespace keys = extensions::manifest_keys;
namespace errors = manifest_errors;
const char kDefaultSandboxedPageContentSecurityPolicy[] =
- "sandbox allow-scripts allow-forms allow-popups";
+ "sandbox allow-scripts allow-forms allow-popups allow-modals";
static base::LazyInstance<SandboxedPageInfo> g_empty_sandboxed_info =
LAZY_INSTANCE_INITIALIZER;