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

Unified Diff: chrome/browser/chrome_browser_main.cc

Issue 10261013: SPDY - Don't add any users into SPDY/3 experiment in (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 8 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 133784)
+++ chrome/browser/chrome_browser_main.cc (working copy)
@@ -789,13 +789,15 @@
if (use_field_trial) {
const base::FieldTrial::Probability kSpdyDivisor = 100;
base::FieldTrial::Probability npnhttp_probability = 5;
- base::FieldTrial::Probability spdy3_probability = 50;
+ base::FieldTrial::Probability spdy3_probability = 0;
chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
if (channel == chrome::VersionInfo::CHANNEL_CANARY ||
channel == chrome::VersionInfo::CHANNEL_UNKNOWN) {
// 5% is for HTTP (no SPDY) and 5% for default SPDY (SPDY/2).
spdy3_probability = 90;
+ } else if (channel == chrome::VersionInfo::CHANNEL_DEV) {
+ spdy3_probability = 50;
}
#if defined(OS_CHROMEOS)
« 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