Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1677)

Unified Diff: chrome/browser/about_flags.cc

Issue 341653006: Add experimental versions of the SSL interstitial (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index 7577556a0b3e3a97ca013d70cf3a88c938e8c25c..9149ce1121e7b8344f341910d285805f9362d33d 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -414,11 +414,15 @@ const Experiment::Choice kExtensionContentVerificationChoices[] = {
const Experiment::Choice kSSLInterstitialVersions[] = {
{ IDS_GENERIC_EXPERIMENT_CHOICE_DEFAULT, "", "" },
{ IDS_FLAGS_SSL_INTERSTITIAL_VERSION_V1,
- switches::kSSLInterstitialVersionV1, "" },
+ switches::kSSLInterstitialV1, "" },
{ IDS_FLAGS_SSL_INTERSTITIAL_VERSION_V2_GRAY,
- switches::kSSLInterstitialVersionV2Gray, "" },
+ switches::kSSLInterstitialV2, "" },
{ IDS_FLAGS_SSL_INTERSTITIAL_VERSION_V2_COLORFUL,
- switches::kSSLInterstitialVersionV2Colorful, "" },
+ switches::kSSLInterstitialV2Yellow, "" },
+ { IDS_FLAGS_SSL_INTERSTITIAL_VERSION_GUARD,
+ switches::kSSLInterstitialV2Guard, "" },
+ { IDS_FLAGS_SSL_INTERSTITIAL_VERSION_V1_V2,
+ switches::kSSLInterstitialV1WithV2Text, "" },
};
// Using independent flags (instead of flag=value flags) to be able to

Powered by Google App Engine
This is Rietveld 408576698