blob: e6af27935a32c15c3404c8206258b56181fda6a2 (
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
|
// 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/common/profile_management_switches.h"
#include "base/command_line.h"
#include "base/metrics/field_trial.h"
#include "chrome/common/chrome_switches.h"
namespace {
const char kNewProfileManagementFieldTrialName[] = "NewProfileManagement";
bool CheckProfileManagementFlag(std::string command_switch, bool active_state) {
// Individiual flag settings take precedence.
if (CommandLine::ForCurrentProcess()->HasSwitch(command_switch)) {
return true;
}
// --new-profile-management flag always affects all switches.
if (CommandLine::ForCurrentProcess()->HasSwitch(
switches::kNewProfileManagement)) {
return active_state;
}
// NewProfileManagement experiment acts like above flag.
std::string trial_type =
base::FieldTrialList::FindFullName(kNewProfileManagementFieldTrialName);
if (!trial_type.empty()) {
if (trial_type == "Enabled")
return active_state;
if (trial_type == "Disabled")
return !active_state;
}
return false;
}
} // namespace
namespace switches {
bool IsEnableWebBasedSignin() {
return CheckProfileManagementFlag(switches::kEnableWebBasedSignin, false);
}
bool IsGoogleProfileInfo() {
return CheckProfileManagementFlag(switches::kGoogleProfileInfo, true);
}
bool IsNewProfileManagement() {
return CheckProfileManagementFlag(switches::kNewProfileManagement, true);
}
bool IsFastUserSwitching() {
return CommandLine::ForCurrentProcess()->HasSwitch(
switches::kFastUserSwitching);
}
} // namespace switches
|