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 #if defined(OS_WIN) | 7 #if defined(OS_WIN) |
8 #include <windows.h> | 8 #include <windows.h> |
9 #endif | 9 #endif |
10 | 10 |
11 #include <map> | 11 #include <map> |
12 #include <string> | 12 #include <string> |
13 | 13 |
14 #include "base/command_line.h" | 14 #include "base/command_line.h" |
15 #include "base/debug/activity_tracker.h" | 15 #include "base/debug/activity_tracker.h" |
16 #include "base/feature_list.h" | 16 #include "base/feature_list.h" |
17 #include "base/files/file_util.h" | 17 #include "base/files/file_util.h" |
18 #include "base/metrics/field_trial.h" | 18 #include "base/metrics/field_trial.h" |
19 #include "base/metrics/field_trial_params.h" | 19 #include "base/metrics/field_trial_params.h" |
20 #include "base/metrics/histogram_macros.h" | 20 #include "base/metrics/histogram_macros.h" |
21 #include "base/path_service.h" | 21 #include "base/path_service.h" |
22 #include "base/time/time.h" | 22 #include "base/time/time.h" |
23 #include "chrome/browser/prerender/prerender_field_trial.h" | 23 #include "chrome/browser/prerender/prerender_field_trial.h" |
24 #include "chrome/common/chrome_features.h" | 24 #include "chrome/common/chrome_features.h" |
25 #include "chrome/common/chrome_paths.h" | 25 #include "chrome/common/chrome_paths.h" |
26 #include "chrome/common/chrome_switches.h" | 26 #include "chrome/common/chrome_switches.h" |
27 #include "components/browser_watcher/features.h" | 27 #include "components/browser_watcher/features.h" |
28 #include "components/browser_watcher/stability_debugging.h" | 28 #include "components/browser_watcher/stability_paths.h" |
29 #include "components/variations/variations_associated_data.h" | 29 #include "components/variations/variations_associated_data.h" |
30 #include "content/public/common/content_switches.h" | 30 #include "content/public/common/content_switches.h" |
31 #include "media/media_features.h" | 31 #include "media/media_features.h" |
32 | 32 |
33 #if defined(OS_WIN) | 33 #if defined(OS_WIN) |
34 #include "base/win/pe_image.h" | 34 #include "base/win/pe_image.h" |
35 #include "chrome/install_static/install_util.h" | 35 #include "chrome/install_static/install_util.h" |
36 #include "components/browser_watcher/stability_data_names.h" | 36 #include "components/browser_watcher/stability_data_names.h" |
37 #endif | 37 #endif |
38 | 38 |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 void SetupDesktopFieldTrials() { | 200 void SetupDesktopFieldTrials() { |
201 prerender::ConfigurePrerender(); | 201 prerender::ConfigurePrerender(); |
202 SetupStunProbeTrial(); | 202 SetupStunProbeTrial(); |
203 #if defined(OS_WIN) | 203 #if defined(OS_WIN) |
204 SetupStabilityDebugging(); | 204 SetupStabilityDebugging(); |
205 base::FeatureList::IsEnabled(features::kModuleDatabase); | 205 base::FeatureList::IsEnabled(features::kModuleDatabase); |
206 #endif // defined(OS_WIN) | 206 #endif // defined(OS_WIN) |
207 } | 207 } |
208 | 208 |
209 } // namespace chrome | 209 } // namespace chrome |
OLD | NEW |