summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authorfelt@chromium.org <felt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-05 03:13:25 +0000
committerfelt@chromium.org <felt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-05 03:13:25 +0000
commitdc8b94b23ca7993b4004cc82f66cadf37775c3c2 (patch)
tree7e3d61dadfebc826b866a9fe843dbfdb0d69fc96 /chrome/common
parent9034a2852384f40f23305e108ee7f23ab5dc7ff3 (diff)
downloadchromium_src-dc8b94b23ca7993b4004cc82f66cadf37775c3c2.zip
chromium_src-dc8b94b23ca7993b4004cc82f66cadf37775c3c2.tar.gz
chromium_src-dc8b94b23ca7993b4004cc82f66cadf37775c3c2.tar.bz2
Set up flags for the malware and ssl interstitial trials
BUG=331453,380238 Review URL: https://codereview.chromium.org/313793002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274989 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/chrome_switches.cc9
-rw-r--r--chrome/common/chrome_switches.h5
2 files changed, 14 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index 486a2f4..e5f13af 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -811,6 +811,10 @@ const char kLoadComponentExtension[] = "load-component-extension";
// Loads an extension from the specified directory.
const char kLoadExtension[] = "load-extension";
+// Controls which version of the malware and phishing interstitials is shown.
+const char kMalwareInterstitialVersionV2[] = "malware-interstitial-v2";
+const char kMalwareInterstitialVersionV3[] = "malware-interstitial-v3";
+
// Makes Chrome default browser
const char kMakeDefaultBrowser[] = "make-default-browser";
@@ -1139,6 +1143,11 @@ const char kSpellingServiceFeedbackUrl[] = "spelling-service-feedback-url";
const char kSpellingServiceFeedbackIntervalSeconds[] =
"spelling-service-feedback-interval-seconds";
+// Controls which version of the TLS/SSL interstitial is shown.
+const char kSSLInterstitialVersionV1[] = "ssl-interstitial-v1";
+const char kSSLInterstitialVersionV2Gray[] = "ssl-interstitial-v2-gray";
+const char kSSLInterstitialVersionV2Colorful[] = "ssl-interstitial-v2-colorful";
+
// Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or
// "tls1.2").
const char kSSLVersionMax[] = "ssl-version-max";
diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h
index e7a094e..00b226a 100644
--- a/chrome/common/chrome_switches.h
+++ b/chrome/common/chrome_switches.h
@@ -229,6 +229,8 @@ extern const char kLedgerTracingToken[];
extern const char kLimitedInstallFromWebstore[];
extern const char kLoadComponentExtension[];
extern const char kLoadExtension[];
+extern const char kMalwareInterstitialVersionV2[];
+extern const char kMalwareInterstitialVersionV3[];
extern const char kMakeDefaultBrowser[];
extern const char kManagedUserId[];
extern const char kManagedUserSyncToken[];
@@ -311,6 +313,9 @@ extern const char kSimulateOutdated[];
extern const char kSimulateOutdatedNoAU[];
extern const char kSpellingServiceFeedbackUrl[];
extern const char kSpellingServiceFeedbackIntervalSeconds[];
+extern const char kSSLInterstitialVersionV1[];
+extern const char kSSLInterstitialVersionV2Gray[];
+extern const char kSSLInterstitialVersionV2Colorful[];
extern const char kSSLVersionMax[];
extern const char kSSLVersionMin[];
extern const char kStartMaximized[];