summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authorsail@chromium.org <sail@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-07 05:28:05 +0000
committersail@chromium.org <sail@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-07 05:28:05 +0000
commit5a4c3f5564f8870edca6be511b33f5c38c599c94 (patch)
tree1a12cab2d850e0df309d7e91f43687947affe879 /chrome/common
parenta532b7524e198c130ff9d71fa7d6da7471725cf1 (diff)
downloadchromium_src-5a4c3f5564f8870edca6be511b33f5c38c599c94.zip
chromium_src-5a4c3f5564f8870edca6be511b33f5c38c599c94.tar.gz
chromium_src-5a4c3f5564f8870edca6be511b33f5c38c599c94.tar.bz2
Add command line flag to enable protector
BUG=102765 TEST= TBR=ivankr@chromium.org Review URL: http://codereview.chromium.org/8491003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108837 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/chrome_switches.cc3
-rw-r--r--chrome/common/chrome_switches.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index 6f8a9c8..e2fc65b 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -921,6 +921,9 @@ const char kProfilingFlush[] = "profiling-flush";
// Specifies a custom URL for fetching NTP promo data.
const char kPromoServerURL[] = "promo-server-url";
+// Enables the protector.
+const char kProtector[] = "protector";
+
// Forces proxy auto-detection.
const char kProxyAutoDetect[] = "proxy-auto-detect";
diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h
index 3481b17..d65a36e 100644
--- a/chrome/common/chrome_switches.h
+++ b/chrome/common/chrome_switches.h
@@ -252,6 +252,7 @@ extern const char kProfilingAtStart[];
extern const char kProfilingFile[];
extern const char kProfilingFlush[];
extern const char kPromoServerURL[];
+extern const char kProtector[];
extern const char kProxyAutoDetect[];
extern const char kProxyBypassList[];
extern const char kProxyPacUrl[];