diff options
author | rockot <rockot@chromium.org> | 2015-12-01 13:45:33 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-12-01 21:46:15 +0000 |
commit | dbadb4c822a748211b634f4807e65e8ef9fc0b93 (patch) | |
tree | d2dfe598ebdc0916a55e0812c086fb45ad0ff91c /extensions/common/manifest_handlers | |
parent | 01bb339a8abf650326249baae9ab5c37ebb04b5e (diff) | |
download | chromium_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.cc | 2 |
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; |