Chromium Code Reviews| Index: components/signin/core/common/profile_management_switches.cc |
| diff --git a/components/signin/core/common/profile_management_switches.cc b/components/signin/core/common/profile_management_switches.cc |
| index a69675360e829e52dee08ab5284f2c0f89480df5..9347f359c2681712e987f269c7b38efd852a0fee 100644 |
| --- a/components/signin/core/common/profile_management_switches.cc |
| +++ b/components/signin/core/common/profile_management_switches.cc |
| @@ -192,4 +192,10 @@ void EnableAccountConsistencyForTesting(base::CommandLine* command_line) { |
| DCHECK(!command_line->HasSwitch(switches::kDisableAccountConsistency)); |
| } |
| +bool HasProfilesJumplistExperiment() { |
| + const std::string group_name = |
| + base::FieldTrialList::FindFullName("Windows-Jumplist-Profiles"); |
| + return group_name == "Use-Profiles"; |
|
Roger Tawa OOO till Jul 10th
2014/11/13 14:54:19
Maybe remove '-' from trial and group names?
noms (inactive)
2014/11/13 16:59:55
Done. Also moved it to jumplist_win.cc because it'
|
| +} |
| + |
| } // namespace switches |