Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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.h" | 5 #include "chrome/browser/chrome_browser_field_trials.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/metrics/field_trial.h" | 10 #include "base/metrics/field_trial.h" |
| 11 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
| 12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
| 14 #include "chrome/common/chrome_switches.h" | 14 #include "chrome/common/chrome_switches.h" |
| 15 #include "components/metrics/metrics_pref_names.h" | 15 #include "components/metrics/metrics_pref_names.h" |
| 16 #include "components/omnibox/browser/omnibox_field_trial.h" | 16 #include "components/omnibox/browser/omnibox_field_trial.h" |
|
Mark P
2016/01/14 18:38:47
This can probably be removed.
Ilya Sherman
2016/01/15 05:16:41
Done.
| |
| 17 | 17 |
| 18 #if defined(OS_ANDROID) || defined(OS_IOS) | 18 #if defined(OS_ANDROID) || defined(OS_IOS) |
| 19 #include "chrome/browser/chrome_browser_field_trials_mobile.h" | 19 #include "chrome/browser/chrome_browser_field_trials_mobile.h" |
| 20 #else | 20 #else |
| 21 #include "chrome/browser/chrome_browser_field_trials_desktop.h" | 21 #include "chrome/browser/chrome_browser_field_trials_desktop.h" |
| 22 #endif | 22 #endif |
| 23 | 23 |
| 24 ChromeBrowserFieldTrials::ChromeBrowserFieldTrials( | 24 ChromeBrowserFieldTrials::ChromeBrowserFieldTrials( |
| 25 const base::CommandLine& parsed_command_line) | 25 const base::CommandLine& parsed_command_line) |
| 26 : parsed_command_line_(parsed_command_line) { | 26 : parsed_command_line_(parsed_command_line) { |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 37 chrome::SetupMobileFieldTrials(parsed_command_line_); | 37 chrome::SetupMobileFieldTrials(parsed_command_line_); |
| 38 #else | 38 #else |
| 39 chrome::SetupDesktopFieldTrials(parsed_command_line_); | 39 chrome::SetupDesktopFieldTrials(parsed_command_line_); |
| 40 #endif | 40 #endif |
| 41 } | 41 } |
| 42 | 42 |
| 43 void ChromeBrowserFieldTrials::InstantiateDynamicTrials() { | 43 void ChromeBrowserFieldTrials::InstantiateDynamicTrials() { |
| 44 // The following trials are used from renderer process. | 44 // The following trials are used from renderer process. |
| 45 // Mark here so they will be sync-ed. | 45 // Mark here so they will be sync-ed. |
| 46 base::FieldTrialList::FindValue("DisplayList2dCanvas"); | 46 base::FieldTrialList::FindValue("DisplayList2dCanvas"); |
| 47 // Activate the autocomplete dynamic field trials. | |
| 48 OmniboxFieldTrial::ActivateDynamicTrials(); | |
| 49 } | 47 } |
| OLD | NEW |