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

Unified Diff: chrome/browser/chrome_browser_main.cc

Issue 10377179: SPDY - Enable SPDY/3 for 95% of the users, HTTP (no SPDY) 1% of the users and (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chrome_browser_main.cc
===================================================================
--- chrome/browser/chrome_browser_main.cc (revision 137530)
+++ chrome/browser/chrome_browser_main.cc (working copy)
@@ -759,9 +759,10 @@
}
if (use_field_trial) {
const base::FieldTrial::Probability kSpdyDivisor = 100;
- base::FieldTrial::Probability npnhttp_probability = 5;
- // 5% is for HTTP (no SPDY) and 5% for default SPDY (SPDY/2).
- base::FieldTrial::Probability spdy3_probability = 90;
+ // Enable SPDY/3 for 95% of the users, HTTP (no SPDY) for 1% of the users
+ // and SPDY/2 for 4% of the users.
+ base::FieldTrial::Probability npnhttp_probability = 1;
+ base::FieldTrial::Probability spdy3_probability = 95;
#if defined(OS_CHROMEOS)
// Always enable SPDY (spdy/2 or spdy/3) on Chrome OS
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698