diff options
author | jamesr@google.com <jamesr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-18 22:00:41 +0000 |
---|---|---|
committer | jamesr@google.com <jamesr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-18 22:00:41 +0000 |
commit | d71283e6e2ddbcdcb9dc20892956d9c7ab6732a3 (patch) | |
tree | 92eb7efde6400daa4f8acc9b0a9b8a981023c7d3 /chrome/common | |
parent | 57ff853ab8631d16a9cc8b522d8aa978da0ee01c (diff) | |
download | chromium_src-d71283e6e2ddbcdcb9dc20892956d9c7ab6732a3.zip chromium_src-d71283e6e2ddbcdcb9dc20892956d9c7ab6732a3.tar.gz chromium_src-d71283e6e2ddbcdcb9dc20892956d9c7ab6732a3.tar.bz2 |
Disable XSSAuditor on trunk until perf issues are resolved
BUG=35723
TEST=none
Review URL: http://codereview.chromium.org/1068001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42008 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 2 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 631f39f..a440c55 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -188,7 +188,7 @@ const char kDisableWebSecurity[] = "disable-web-security"; const char kDisableWebSockets[] = "disable-web-sockets"; // Disable WebKit's XSSAuditor. The XSSAuditor mitigates reflective XSS. -const char kDisableXSSAuditor[] = "disable-xss-auditor"; +const char kEnableXSSAuditor[] = "enable-xss-auditor"; // Use a specific disk cache location, rather than one derived from the // UserDatadir. diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index edda3d5..8c0d490 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -69,7 +69,7 @@ extern const char kDisableSyncTypedUrls[]; extern const char kDisableWebResources[]; extern const char kDisableWebSecurity[]; extern const char kDisableWebSockets[]; -extern const char kDisableXSSAuditor[]; +extern const char kEnableXSSAuditor[]; extern const char kDiskCacheDir[]; extern const char kDiskCacheSize[]; extern const char kDnsLogDetails[]; |