summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorlzheng@chromium.org <lzheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-16 19:06:07 +0000
committerlzheng@chromium.org <lzheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-16 19:06:07 +0000
commitd5d6d496e92cef7900eed81ea218e8f885e8fe02 (patch)
treecddc67644d9fec43eca69b519b78ae43d28c514d /chrome
parent74f7df7dad8da278eab26e6b323880428b4ea5ce (diff)
downloadchromium_src-d5d6d496e92cef7900eed81ea218e8f885e8fe02.zip
chromium_src-d5d6d496e92cef7900eed81ea218e8f885e8fe02.tar.gz
chromium_src-d5d6d496e92cef7900eed81ea218e8f885e8fe02.tar.bz2
Now spdy in enabled by default to 50% of users. We could remove the special case for sxs.
TEST=none BUG=none Review URL: http://codereview.chromium.org/2861058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52716 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/browser_main.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc
index 3ff33c0..af6098a 100644
--- a/chrome/browser/browser_main.cc
+++ b/chrome/browser/browser_main.cc
@@ -115,8 +115,6 @@
#include "chrome/browser/views/user_data_dir_dialog.h"
#include "chrome/common/env_vars.h"
#include "chrome/common/sandbox_policy.h"
-#include "chrome/installer/util/browser_distribution.h"
-#include "chrome/installer/util/google_chrome_sxs_distribution.h"
#include "chrome/installer/util/helper.h"
#include "chrome/installer/util/install_util.h"
#include "chrome/installer/util/shell_util.h"
@@ -273,15 +271,6 @@ void BrowserMainParts::SpdyFieldTrial() {
// https vs. https over spdy case.
FieldTrial::Probability npnhttp_probability = 250;
FieldTrial::Probability npnspdy_probability = 500;
-#if defined(OS_WIN)
- // Enable the A/B test for SxS. SxS is only available on windows
- std::wstring channel;
- if (BrowserDistribution::GetDistribution()->GetChromeChannel(&channel) &&
- channel == GoogleChromeSxSDistribution::ChannelName()) {
- npnhttp_probability = 500;
- npnspdy_probability = 500;
- }
-#endif
scoped_refptr<FieldTrial> trial =
new FieldTrial("SpdyImpact", kSpdyDivisor);
// npn with only http support, no spdy.