diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-10 17:49:13 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-10 17:49:13 +0000 |
commit | 9a40ebef1a4b169ef5627795d4ad564f612951e5 (patch) | |
tree | ab3286566efb3f0f5b14e77f21b2417779f7b656 /chrome | |
parent | 63b3a650eea6563d391e4a445f46decf65ce9259 (diff) | |
download | chromium_src-9a40ebef1a4b169ef5627795d4ad564f612951e5.zip chromium_src-9a40ebef1a4b169ef5627795d4ad564f612951e5.tar.gz chromium_src-9a40ebef1a4b169ef5627795d4ad564f612951e5.tar.bz2 |
Add Snap Start to about:flags
The recent unittests (still pending review) have shown that certificate
errors are correctly piped through, so I think Snap Start is ready for
about:flags, although it's still pretty verbose on the terminal.
BUG=none
TEST=none
http://codereview.chromium.org/4735004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65680 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/app/generated_resources.grd | 6 | ||||
-rw-r--r-- | chrome/browser/about_flags.cc | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index 940e6d2..b151a2b 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -4095,6 +4095,12 @@ Keep your key file in a safe place. You will need it to create new versions of y <message name="IDS_FLAGS_CONFIRM_TO_QUIT_DESCRIPTION" desc="Description of the 'Confirm to Quit' lab."> Receive a prompt before quitting to confirm the action. </message> + <message name="IDS_FLAGS_SNAP_START_NAME" desc="Name of the 'Snap Start' lab."> + Snap Start + </message> + <message name="IDS_FLAGS_SNAP_START_DESCRIPTION" desc="Description of the 'Snap Start' lab."> + Enables an experimental TLS extension which removes a round trip from HTTPS handshakes. + </message> <!-- Instant --> <message name="IDS_INSTANT_OPT_IN_ENABLE" desc="Button shown in the omnibox dropdown for enabling instant"> diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc index f1cebb1..1be1f21 100644 --- a/chrome/browser/about_flags.cc +++ b/chrome/browser/about_flags.cc @@ -178,6 +178,13 @@ const Experiment kExperiments[] = { kOsMac, switches::kEnableConfirmToQuit }, + { + "snap-start", // Do not change; see above. + IDS_FLAGS_SNAP_START_NAME, + IDS_FLAGS_SNAP_START_DESCRIPTION, + kOsAll, + switches::kEnableSnapStart + }, }; const Experiment* experiments = kExperiments; |