diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-30 01:22:57 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-30 01:22:57 +0000 |
commit | a1f1cb2cbab36077059266a1e5141104fd2ec995 (patch) | |
tree | 6c8f10eedeb5e10ae6af77b68002c268601e9d52 /chrome/common/chrome_switches.cc | |
parent | aa3be97db621ecfb620487f2a0f4f0c4529c0668 (diff) | |
download | chromium_src-a1f1cb2cbab36077059266a1e5141104fd2ec995.zip chromium_src-a1f1cb2cbab36077059266a1e5141104fd2ec995.tar.gz chromium_src-a1f1cb2cbab36077059266a1e5141104fd2ec995.tar.bz2 |
[SPDY] Add strings and constants for HTTP/2 draft 04
There are still differences between SPDY/4 and HTTP/2 draft 04; those
will be ironed out in upcoming CLs.
Add kProtoHTTP2Draft04 to SPDY NextProto-parametrized tests.
Move NextProto -> SpdyMajorVersion conversion to buffered_spdy_framer.h.
Remove unused SpdyMajorVersion -> NextProto conversion.
Clean up HttpResponseInfo::ConnectionInfo a bit and add a TODO to
remove it.
Parametrize SSLClientSocketPoolTest on NextProto.
BUG=265615
R=darin@chromium.org, rch@chromium.org
Review URL: https://codereview.chromium.org/21131002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214289 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index f288357..9fc1f72 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -571,6 +571,9 @@ const char kEnableFileCookies[] = "enable-file-cookies"; // Enables Google Now integration. const char kEnableGoogleNowIntegration[] = "enable-google-now-integration"; +// Enable HTTP/2 draft 04. This is a temporary testing flag. +const char kEnableHttp2Draft04[] = "enable-http2-draft-04"; + // Enable Instant extended API. On mobile, this merely enables query extraction, // not the rest of the instant-extended functionality. const char kEnableInstantExtendedAPI[] = "enable-instant-extended-api"; |