Commit b861cbad authored by Livvie Lin's avatar Livvie Lin Committed by Commit Bot

Add chrome flags for kSSLCommittedInterstitials

Useful for testing.

Bug: 987407
Change-Id: I9af198d67e224f52753b31c7722228c626128b4e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2013519Reviewed-by: default avatarEugene But <eugenebut@chromium.org>
Commit-Queue: Livvie Lin <livvielin@chromium.org>
Cr-Commit-Position: refs/heads/master@{#733839}
parent c5fbddf1
...@@ -593,6 +593,10 @@ const flags_ui::FeatureEntry kFeatureEntries[] = { ...@@ -593,6 +593,10 @@ const flags_ui::FeatureEntry kFeatureEntries[] = {
{"clear-synced-data", flag_descriptions::kClearSyncedDataName, {"clear-synced-data", flag_descriptions::kClearSyncedDataName,
flag_descriptions::kClearSyncedDataDescription, flags_ui::kOsIos, flag_descriptions::kClearSyncedDataDescription, flags_ui::kOsIos,
FEATURE_VALUE_TYPE(kClearSyncedData)}, FEATURE_VALUE_TYPE(kClearSyncedData)},
{"ssl-committed-interstitials",
flag_descriptions::kSSLCommittedInterstitialsName,
flag_descriptions::kSSLCommittedInterstitialsDescription, flags_ui::kOsIos,
FEATURE_VALUE_TYPE(web::features::kSSLCommittedInterstitials)},
}; };
// Add all switches from experimental flags to |command_line|. // Add all switches from experimental flags to |command_line|.
......
...@@ -344,6 +344,12 @@ const char kSnapshotDrawViewName[] = "Use DrawViewHierarchy for Snapshots"; ...@@ -344,6 +344,12 @@ const char kSnapshotDrawViewName[] = "Use DrawViewHierarchy for Snapshots";
const char kSnapshotDrawViewDescription[] = const char kSnapshotDrawViewDescription[] =
"When enabled, snapshots will be taken using |-drawViewHierarchy:|."; "When enabled, snapshots will be taken using |-drawViewHierarchy:|.";
const char kSSLCommittedInterstitialsName[] =
"Enable SSL committed interstitials";
const char kSSLCommittedInterstitialsDescription[] =
"When enabled, SSL interstitial pages will be committed rather than using "
"an overlay on the page.";
const char kForceStartupSigninPromoName[] = "Display the startup sign-in promo"; const char kForceStartupSigninPromoName[] = "Display the startup sign-in promo";
const char kForceStartupSigninPromoDescription[] = const char kForceStartupSigninPromoDescription[] =
"When enabled, the startup sign-in promo is always displayed when starting " "When enabled, the startup sign-in promo is always displayed when starting "
......
...@@ -303,6 +303,10 @@ extern const char kShowAutofillTypePredictionsDescription[]; ...@@ -303,6 +303,10 @@ extern const char kShowAutofillTypePredictionsDescription[];
extern const char kSnapshotDrawViewName[]; extern const char kSnapshotDrawViewName[];
extern const char kSnapshotDrawViewDescription[]; extern const char kSnapshotDrawViewDescription[];
// Title and description for the flag to enable SSL committed interstitials.
extern const char kSSLCommittedInterstitialsName[];
extern const char kSSLCommittedInterstitialsDescription[];
// Title and description for the flag to trigger the startup sign-in promo. // Title and description for the flag to trigger the startup sign-in promo.
extern const char kForceStartupSigninPromoName[]; extern const char kForceStartupSigninPromoName[];
extern const char kForceStartupSigninPromoDescription[]; extern const char kForceStartupSigninPromoDescription[];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment