| 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 "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/environment.h" | 10 #include "base/environment.h" |
| 11 #include "base/metrics/field_trial.h" | 11 #include "base/metrics/field_trial.h" |
| 12 #include "base/prefs/pref_service.h" | 12 #include "base/prefs/pref_service.h" |
| 13 #include "base/strings/string_util.h" | 13 #include "base/strings/string_util.h" |
| 14 #include "chrome/browser/auto_launch_trial.h" | 14 #include "chrome/browser/auto_launch_trial.h" |
| 15 #include "chrome/browser/google/google_brand.h" |
| 15 #include "chrome/browser/google/google_util.h" | 16 #include "chrome/browser/google/google_util.h" |
| 16 #include "chrome/browser/omnibox/omnibox_field_trial.h" | 17 #include "chrome/browser/omnibox/omnibox_field_trial.h" |
| 17 #include "chrome/browser/prerender/prerender_field_trial.h" | 18 #include "chrome/browser/prerender/prerender_field_trial.h" |
| 18 #include "chrome/browser/profiles/profiles_state.h" | 19 #include "chrome/browser/profiles/profiles_state.h" |
| 19 #include "chrome/browser/safe_browsing/safe_browsing_blocking_page.h" | 20 #include "chrome/browser/safe_browsing/safe_browsing_blocking_page.h" |
| 20 #include "chrome/browser/ui/app_list/app_list_util.h" | 21 #include "chrome/browser/ui/app_list/app_list_util.h" |
| 21 #include "chrome/browser/ui/sync/one_click_signin_helper.h" | 22 #include "chrome/browser/ui/sync/one_click_signin_helper.h" |
| 22 #include "chrome/common/chrome_constants.h" | 23 #include "chrome/common/chrome_constants.h" |
| 23 #include "chrome/common/chrome_switches.h" | 24 #include "chrome/common/chrome_switches.h" |
| 24 #include "chrome/common/chrome_version_info.h" | 25 #include "chrome/common/chrome_version_info.h" |
| 25 #include "chrome/common/pref_names.h" | 26 #include "chrome/common/pref_names.h" |
| 26 #include "chrome/common/variations/variations_util.h" | 27 #include "chrome/common/variations/variations_util.h" |
| 27 #include "content/public/common/content_constants.h" | 28 #include "content/public/common/content_constants.h" |
| 28 #include "net/spdy/spdy_session.h" | 29 #include "net/spdy/spdy_session.h" |
| 29 #include "ui/base/layout.h" | 30 #include "ui/base/layout.h" |
| 30 | 31 |
| 31 #if defined(OS_CHROMEOS) | 32 #if defined(OS_CHROMEOS) |
| 32 #include "chrome/browser/chromeos/login/users/user_manager.h" | 33 #include "chrome/browser/chromeos/login/users/user_manager.h" |
| 33 #endif | 34 #endif |
| 34 | 35 |
| 35 namespace chrome { | 36 namespace chrome { |
| 36 | 37 |
| 37 namespace { | 38 namespace { |
| 38 | 39 |
| 39 void AutoLaunchChromeFieldTrial() { | 40 void AutoLaunchChromeFieldTrial() { |
| 40 std::string brand; | 41 std::string brand; |
| 41 google_util::GetBrand(&brand); | 42 google_brand::GetBrand(&brand); |
| 42 | 43 |
| 43 // Create a 100% field trial based on the brand code. | 44 // Create a 100% field trial based on the brand code. |
| 44 if (auto_launch_trial::IsInExperimentGroup(brand)) { | 45 if (auto_launch_trial::IsInExperimentGroup(brand)) { |
| 45 base::FieldTrialList::CreateFieldTrial(kAutoLaunchTrialName, | 46 base::FieldTrialList::CreateFieldTrial(kAutoLaunchTrialName, |
| 46 kAutoLaunchTrialAutoLaunchGroup); | 47 kAutoLaunchTrialAutoLaunchGroup); |
| 47 } else if (auto_launch_trial::IsInControlGroup(brand)) { | 48 } else if (auto_launch_trial::IsInControlGroup(brand)) { |
| 48 base::FieldTrialList::CreateFieldTrial(kAutoLaunchTrialName, | 49 base::FieldTrialList::CreateFieldTrial(kAutoLaunchTrialName, |
| 49 kAutoLaunchTrialControlGroup); | 50 kAutoLaunchTrialControlGroup); |
| 50 } | 51 } |
| 51 } | 52 } |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 prerender::ConfigurePrerender(parsed_command_line); | 124 prerender::ConfigurePrerender(parsed_command_line); |
| 124 AutoLaunchChromeFieldTrial(); | 125 AutoLaunchChromeFieldTrial(); |
| 125 OmniboxFieldTrial::ActivateStaticTrials(); | 126 OmniboxFieldTrial::ActivateStaticTrials(); |
| 126 SetupInfiniteCacheFieldTrial(); | 127 SetupInfiniteCacheFieldTrial(); |
| 127 DisableShowProfileSwitcherTrialIfNecessary(); | 128 DisableShowProfileSwitcherTrialIfNecessary(); |
| 128 SetupShowAppLauncherPromoFieldTrial(local_state); | 129 SetupShowAppLauncherPromoFieldTrial(local_state); |
| 129 SetupPreReadFieldTrial(); | 130 SetupPreReadFieldTrial(); |
| 130 } | 131 } |
| 131 | 132 |
| 132 } // namespace chrome | 133 } // namespace chrome |
| OLD | NEW |