blob: 087fdb595863b8ca015614be5d0c9735a54160c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/chrome_browser_field_trials_desktop.h"
#include <string>
#include "base/command_line.h"
#include "base/metrics/field_trial.h"
#include "chrome/browser/auto_launch_trial.h"
#include "chrome/browser/google/google_brand.h"
#include "chrome/browser/prerender/prerender_field_trial.h"
#include "chrome/browser/tracing/background_tracing_field_trial.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/variations/variations_util.h"
#include "components/variations/variations_associated_data.h"
namespace chrome {
namespace {
void AutoLaunchChromeFieldTrial() {
std::string brand;
google_brand::GetBrand(&brand);
// Create a 100% field trial based on the brand code.
if (auto_launch_trial::IsInExperimentGroup(brand)) {
base::FieldTrialList::CreateFieldTrial(kAutoLaunchTrialName,
kAutoLaunchTrialAutoLaunchGroup);
} else if (auto_launch_trial::IsInControlGroup(brand)) {
base::FieldTrialList::CreateFieldTrial(kAutoLaunchTrialName,
kAutoLaunchTrialControlGroup);
}
}
void SetupLightSpeedTrials() {
if (!variations::GetVariationParamValue("LightSpeed", "NoGpu").empty()) {
base::CommandLine::ForCurrentProcess()->AppendSwitch(
switches::kDisableGpu);
}
}
void SetupStunProbeTrial() {
#if defined(ENABLE_WEBRTC)
std::map<std::string, std::string> params;
if (!variations::GetVariationParams("StunProbeTrial", ¶ms))
return;
// The parameter, used by StartStunFieldTrial, should have the following
// format: "request_per_ip/interval/sharedsocket/server1:port/server2:port/
// server3:port/"
std::string cmd_param = params["request_per_ip"] + "/" + params["interval"] +
"/" + params["sharedsocket"] + "/" +
params["server1"] + "/" + params["server2"] + "/" +
params["server3"] + "/";
base::CommandLine::ForCurrentProcess()->AppendSwitchASCII(
switches::kWebRtcStunProbeTrialParameter, cmd_param);
#endif
}
} // namespace
void SetupDesktopFieldTrials(const base::CommandLine& parsed_command_line) {
prerender::ConfigurePrerender(parsed_command_line);
AutoLaunchChromeFieldTrial();
SetupLightSpeedTrials();
tracing::SetupBackgroundTracingFieldTrial();
SetupStunProbeTrial();
}
} // namespace chrome
|