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

Issue 9766021: SPDY - Added enabling of SPDY/3 to about:flags. (Closed)

Created:
8 years, 9 months ago by ramant (doing other things)
Modified:
8 years, 9 months ago
CC:
chromium-reviews, hkhalil, rch (use chromium not google)
Visibility:
Public.

Description

SPDY - Added enabling of SPDY/3 and SPDY flow control to about:flags. Added command line switches --enable-spdy3 to enable SPDY/3 and --enable-spdy-flow-control to enable flow control (SPDY/2.1). Added Field Trials for SPDY/2.1 and SPDY/3. The FieldTrials are enabled when SPDY/3 and flow control command line options are not chosen. Removed --use-spdy=v3 and --use-spdy=flow-control options. BUG=118440, 119205 R=willchan TEST=Netowrk unit tests and browser tests. Enable SPDY/3 in about:flags and see in chrome://net-internals that SPDY/2, SPDY/2.1 and SPDY/3 are displayed as the protocols supported. Enable SPDY FLow Control in about:flags and see in chrome://net-internals that SPDY/2 and SPDY/2.1 are displayed as the protocols supported. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=128420

Patch Set 1 #

Total comments: 5

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Patch Set 8 : #

Total comments: 2

Patch Set 9 : #

Patch Set 10 : #

Total comments: 1

Patch Set 11 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+92 lines, -20 lines) Patch
M chrome/app/generated_resources.grd View 1 chunk +12 lines, -0 lines 0 comments Download
M chrome/browser/about_flags.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +14 lines, -0 lines 0 comments Download
M chrome/browser/chrome_browser_main.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +29 lines, -0 lines 0 comments Download
M chrome/common/chrome_switches.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/common/chrome_switches.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +6 lines, -0 lines 0 comments Download
M net/http/http_network_layer.cc View 1 2 3 4 5 6 7 8 9 10 3 chunks +0 lines, -20 lines 0 comments Download
M net/http/http_stream_factory.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +10 lines, -0 lines 0 comments Download
M net/http/http_stream_factory.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +19 lines, -0 lines 0 comments Download

Messages

Total messages: 15 (0 generated)
ramant (doing other things)
Hi willchan, Would appreciate if you could look at this CL for enabling SPDY/3 via ...
8 years, 9 months ago (2012-03-21 06:23:36 UTC) #1
willchan no longer on Chromium
http://codereview.chromium.org/9766021/diff/1/chrome/browser/chrome_browser_main.cc File chrome/browser/chrome_browser_main.cc (right): http://codereview.chromium.org/9766021/diff/1/chrome/browser/chrome_browser_main.cc#newcode270 chrome/browser/chrome_browser_main.cc:270: if (parsed_command_line.HasSwitch(switches::kEnableSPDY3)) { How does this command line flag ...
8 years, 9 months ago (2012-03-21 16:15:32 UTC) #2
ramant (doing other things)
Hi willchan, Ordered enable-spdy3 alphabetically. thanks for your comments, raman http://codereview.chromium.org/9766021/diff/1/chrome/browser/chrome_browser_main.cc File chrome/browser/chrome_browser_main.cc (right): http://codereview.chromium.org/9766021/diff/1/chrome/browser/chrome_browser_main.cc#newcode270 ...
8 years, 9 months ago (2012-03-21 18:46:35 UTC) #3
willchan no longer on Chromium
http://codereview.chromium.org/9766021/diff/1/chrome/browser/chrome_browser_main.cc File chrome/browser/chrome_browser_main.cc (right): http://codereview.chromium.org/9766021/diff/1/chrome/browser/chrome_browser_main.cc#newcode270 chrome/browser/chrome_browser_main.cc:270: if (parsed_command_line.HasSwitch(switches::kEnableSPDY3)) { On 2012/03/21 18:46:36, ramant wrote: > ...
8 years, 9 months ago (2012-03-21 23:01:55 UTC) #4
ramant (doing other things)
On 2012/03/21 23:01:55, willchan wrote: > http://codereview.chromium.org/9766021/diff/1/chrome/browser/chrome_browser_main.cc > File chrome/browser/chrome_browser_main.cc (right): > > http://codereview.chromium.org/9766021/diff/1/chrome/browser/chrome_browser_main.cc#newcode270 > ...
8 years, 9 months ago (2012-03-21 23:56:16 UTC) #5
ramant (doing other things)
Please ignore my comment#5 (that comment was incorrect). --use-spdy=flow-control was overwriting the about:flags's enable-spdy3 flag. ...
8 years, 9 months ago (2012-03-22 05:41:34 UTC) #6
ramant (doing other things)
Hi willchan, It was confusing for me to have two ways to enable spdy/2.1 or ...
8 years, 9 months ago (2012-03-22 07:25:57 UTC) #7
Ryan Hamilton
https://chromiumcodereview.appspot.com/9766021/diff/18007/chrome/browser/chrome_browser_main.cc File chrome/browser/chrome_browser_main.cc (right): https://chromiumcodereview.appspot.com/9766021/diff/18007/chrome/browser/chrome_browser_main.cc#newcode844 chrome/browser/chrome_browser_main.cc:844: 2012, 10, 30)); October seems like a long time ...
8 years, 9 months ago (2012-03-22 16:30:21 UTC) #8
ramant (doing other things)
Set the SPDY/3 probability to 0. Thanks much Ryan and willchan for all your comments. ...
8 years, 9 months ago (2012-03-22 16:38:24 UTC) #9
ramant (doing other things)
On 2012/03/22 16:38:24, ramant wrote: > Set the SPDY/3 probability to 0. > > Thanks ...
8 years, 9 months ago (2012-03-22 22:34:01 UTC) #10
hkhalil
I think that we're in a good place to start playing with it at least. ...
8 years, 9 months ago (2012-03-22 22:36:15 UTC) #11
willchan no longer on Chromium
LGTM, mod some leftovers you had. https://chromiumcodereview.appspot.com/9766021/diff/20017/net/http/http_network_layer.cc File net/http/http_network_layer.cc (right): https://chromiumcodereview.appspot.com/9766021/diff/20017/net/http/http_network_layer.cc#newcode95 net/http/http_network_layer.cc:95: std::vector<std::string> next_protos; Wait, ...
8 years, 9 months ago (2012-03-23 00:41:46 UTC) #12
ramant (doing other things)
On 2012/03/23 00:41:46, willchan wrote: > LGTM, mod some leftovers you had. > > https://chromiumcodereview.appspot.com/9766021/diff/20017/net/http/http_network_layer.cc ...
8 years, 9 months ago (2012-03-23 03:06:50 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rtenneti@chromium.org/9766021/13012
8 years, 9 months ago (2012-03-23 03:08:30 UTC) #14
commit-bot: I haz the power
8 years, 9 months ago (2012-03-23 05:57:56 UTC) #15
Change committed as 128420

Powered by Google App Engine
This is Rietveld 408576698