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

Unified Diff: chrome/browser/chrome_browser_main.cc

Issue 7946009: Re-enable SPDY *HOLDBACK* field trials. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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
diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc
index 4e8122bf92d1f4f3f7a4f0dcecd95d635f711daf..23caadf93c1087bcf468356a9d919b9fad366d7a 100644
--- a/chrome/browser/chrome_browser_main.cc
+++ b/chrome/browser/chrome_browser_main.cc
@@ -858,10 +858,10 @@ void ChromeBrowserMainParts::SpdyFieldTrial() {
const base::FieldTrial::Probability kSpdyDivisor = 100;
base::FieldTrial::Probability npnhttp_probability = 5;
- // After June 30, 2011 builds, it will always be in default group.
+ // After June 30, 2013 builds, it will always be in default group.
scoped_refptr<base::FieldTrial> trial(
new base::FieldTrial(
- "SpdyImpact", kSpdyDivisor, "npn_with_spdy", 2011, 6, 30));
+ "SpdyImpact", kSpdyDivisor, "npn_with_spdy", 2013, 6, 30));
// npn with spdy support is the default.
int npn_spdy_grp = trial->kDefaultGroupNumber;
@@ -892,11 +892,11 @@ void ChromeBrowserMainParts::SpdyFieldTrial() {
const base::FieldTrial::Probability kSpdyCwndMin16 = 20; // no less than 16
const base::FieldTrial::Probability kSpdyCwndMin10 = 20; // no less than 10
- // After June 30, 2011 builds, it will always be in default group
+ // After June 30, 2013 builds, it will always be in default group
// (cwndDynamic).
scoped_refptr<base::FieldTrial> trial(
new base::FieldTrial(
- "SpdyCwnd", kSpdyCwndDivisor, "cwndDynamic", 2011, 6, 30));
+ "SpdyCwnd", kSpdyCwndDivisor, "cwndDynamic", 2013, 6, 30));
trial->AppendGroup("cwnd10", kSpdyCwnd10);
trial->AppendGroup("cwnd16", kSpdyCwnd16);
« 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