| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/chrome_browser_field_trials_desktop.h" | 5 #include "chrome/browser/chrome_browser_field_trials_desktop.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "apps/field_trial_names.h" | 9 #include "apps/field_trial_names.h" |
| 10 #include "apps/pref_names.h" | 10 #include "apps/pref_names.h" |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 const base::Time& install_time, | 147 const base::Time& install_time, |
| 148 PrefService* local_state) { | 148 PrefService* local_state) { |
| 149 prerender::ConfigurePrefetchAndPrerender(parsed_command_line); | 149 prerender::ConfigurePrefetchAndPrerender(parsed_command_line); |
| 150 AutoLaunchChromeFieldTrial(); | 150 AutoLaunchChromeFieldTrial(); |
| 151 gpu_util::InitializeCompositingFieldTrial(); | 151 gpu_util::InitializeCompositingFieldTrial(); |
| 152 OmniboxFieldTrial::ActivateStaticTrials(); | 152 OmniboxFieldTrial::ActivateStaticTrials(); |
| 153 SetUpInfiniteCacheFieldTrial(); | 153 SetUpInfiniteCacheFieldTrial(); |
| 154 SetUpCacheSensitivityAnalysisFieldTrial(); | 154 SetUpCacheSensitivityAnalysisFieldTrial(); |
| 155 DisableShowProfileSwitcherTrialIfNecessary(); | 155 DisableShowProfileSwitcherTrialIfNecessary(); |
| 156 WindowsOverlappedTCPReadsFieldTrial(parsed_command_line); | 156 WindowsOverlappedTCPReadsFieldTrial(parsed_command_line); |
| 157 #if defined(ENABLE_ONE_CLICK_SIGNIN) | |
| 158 OneClickSigninHelper::InitializeFieldTrial(); | |
| 159 #endif | |
| 160 SetupAppLauncherFieldTrial(local_state); | 157 SetupAppLauncherFieldTrial(local_state); |
| 161 } | 158 } |
| 162 | 159 |
| 163 } // namespace chrome | 160 } // namespace chrome |
| OLD | NEW |