| 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/histogram_macros.h" | 19 #include "base/metrics/histogram_macros.h" |
| 20 #include "base/path_service.h" | 20 #include "base/path_service.h" |
| 21 #include "chrome/browser/features.h" | 21 #include "chrome/browser/features.h" |
| 22 #include "chrome/browser/prerender/prerender_field_trial.h" | 22 #include "chrome/browser/prerender/prerender_field_trial.h" |
| 23 #include "chrome/common/chrome_paths.h" | 23 #include "chrome/common/chrome_paths.h" |
| 24 #include "chrome/common/chrome_switches.h" | 24 #include "chrome/common/chrome_switches.h" |
| 25 #include "components/browser_watcher/features.h" | 25 #include "components/browser_watcher/features.h" |
| 26 #include "components/browser_watcher/stability_debugging.h" |
| 26 #include "components/variations/variations_associated_data.h" | 27 #include "components/variations/variations_associated_data.h" |
| 27 #include "content/public/common/content_switches.h" | 28 #include "content/public/common/content_switches.h" |
| 28 #include "media/media_features.h" | 29 #include "media/media_features.h" |
| 29 | 30 |
| 30 #if defined(OS_WIN) | 31 #if defined(OS_WIN) |
| 31 #include "chrome/install_static/install_util.h" | 32 #include "chrome/install_static/install_util.h" |
| 32 #include "components/browser_watcher/stability_data_names.h" | 33 #include "components/browser_watcher/stability_data_names.h" |
| 33 #include "components/browser_watcher/stability_debugging_win.h" | |
| 34 #endif | 34 #endif |
| 35 | 35 |
| 36 namespace chrome { | 36 namespace chrome { |
| 37 | 37 |
| 38 namespace { | 38 namespace { |
| 39 | 39 |
| 40 void SetupStunProbeTrial() { | 40 void SetupStunProbeTrial() { |
| 41 #if BUILDFLAG(ENABLE_WEBRTC) | 41 #if BUILDFLAG(ENABLE_WEBRTC) |
| 42 std::map<std::string, std::string> params; | 42 std::map<std::string, std::string> params; |
| 43 if (!variations::GetVariationParams("StunProbeTrial2", ¶ms)) | 43 if (!variations::GetVariationParams("StunProbeTrial2", ¶ms)) |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 #endif // defined(OS_WIN) | 150 #endif // defined(OS_WIN) |
| 151 // Activate the experiment as early as possible to increase its visibility | 151 // Activate the experiment as early as possible to increase its visibility |
| 152 // (e.g. the likelihood of its presence in the serialized system profile). | 152 // (e.g. the likelihood of its presence in the serialized system profile). |
| 153 // This also needs to happen before the browser rendez-vous attempt | 153 // This also needs to happen before the browser rendez-vous attempt |
| 154 // (NotifyOtherProcessOrCreate) in PreMainMessageLoopRun so the corresponding | 154 // (NotifyOtherProcessOrCreate) in PreMainMessageLoopRun so the corresponding |
| 155 // metrics are tagged. | 155 // metrics are tagged. |
| 156 base::FeatureList::IsEnabled(features::kDesktopFastShutdown); | 156 base::FeatureList::IsEnabled(features::kDesktopFastShutdown); |
| 157 } | 157 } |
| 158 | 158 |
| 159 } // namespace chrome | 159 } // namespace chrome |
| OLD | NEW |