diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-31 22:41:58 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-31 22:41:58 +0000 |
commit | 6ed944a49eb2dedf2f136ce4009cbbebd8ba25ca (patch) | |
tree | f8761f07ad188c0e7c495bb40cac536aa2e1ee94 /content/browser/tcmalloc_internals_request_job.cc | |
parent | fe9cb1e182e3e2cd72bf3999938822b1445eec91 (diff) | |
download | chromium_src-6ed944a49eb2dedf2f136ce4009cbbebd8ba25ca.zip chromium_src-6ed944a49eb2dedf2f136ce4009cbbebd8ba25ca.tar.gz chromium_src-6ed944a49eb2dedf2f136ce4009cbbebd8ba25ca.tar.bz2 |
Fix CSP warning for about:histograms and about:tcmalloc.
Specifying 'none' in combination with 'unsafe-eval' doesn't do anything.
BUG=245484
Review URL: https://chromiumcodereview.appspot.com/15855009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203498 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/tcmalloc_internals_request_job.cc')
-rw-r--r-- | content/browser/tcmalloc_internals_request_job.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/tcmalloc_internals_request_job.cc b/content/browser/tcmalloc_internals_request_job.cc index b155b2f..58e78af 100644 --- a/content/browser/tcmalloc_internals_request_job.cc +++ b/content/browser/tcmalloc_internals_request_job.cc @@ -74,7 +74,7 @@ void AboutTcmalloc(std::string* data) { data->append("<!DOCTYPE html>\n<html>\n<head>\n"); data->append( "<meta http-equiv=\"Content-Security-Policy\" " - "content=\"object-src 'none'; script-src 'none' 'unsafe-eval'\">"); + "content=\"object-src 'none'; script-src 'none'\">"); data->append("<title>tcmalloc stats</title>"); data->append("</head><body>"); |