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_content_browser_client.h" | 5 #include "chrome/browser/chrome_content_browser_client.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <set> | 8 #include <set> |
9 #include <utility> | 9 #include <utility> |
10 #include <vector> | 10 #include <vector> |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 #include "components/pref_registry/pref_registry_syncable.h" | 136 #include "components/pref_registry/pref_registry_syncable.h" |
137 #include "components/prefs/pref_service.h" | 137 #include "components/prefs/pref_service.h" |
138 #include "components/prefs/scoped_user_pref_update.h" | 138 #include "components/prefs/scoped_user_pref_update.h" |
139 #include "components/rappor/public/rappor_utils.h" | 139 #include "components/rappor/public/rappor_utils.h" |
140 #include "components/rappor/rappor_recorder_impl.h" | 140 #include "components/rappor/rappor_recorder_impl.h" |
141 #include "components/rappor/rappor_service_impl.h" | 141 #include "components/rappor/rappor_service_impl.h" |
142 #include "components/security_interstitials/core/ssl_error_ui.h" | 142 #include "components/security_interstitials/core/ssl_error_ui.h" |
143 #include "components/signin/core/common/profile_management_switches.h" | 143 #include "components/signin/core/common/profile_management_switches.h" |
144 #include "components/spellcheck/spellcheck_build_features.h" | 144 #include "components/spellcheck/spellcheck_build_features.h" |
145 #include "components/startup_metric_utils/browser/startup_metric_host_impl.h" | 145 #include "components/startup_metric_utils/browser/startup_metric_host_impl.h" |
| 146 #include "components/task_scheduler_util/initialization/browser_util.h" |
| 147 #include "components/task_scheduler_util/variations/browser_variations_util.h" |
146 #include "components/translate/core/common/translate_switches.h" | 148 #include "components/translate/core/common/translate_switches.h" |
147 #include "components/url_formatter/url_fixer.h" | 149 #include "components/url_formatter/url_fixer.h" |
148 #include "components/variations/variations_associated_data.h" | 150 #include "components/variations/variations_associated_data.h" |
149 #include "components/version_info/version_info.h" | 151 #include "components/version_info/version_info.h" |
150 #include "content/public/browser/browser_child_process_host.h" | 152 #include "content/public/browser/browser_child_process_host.h" |
151 #include "content/public/browser/browser_main_parts.h" | 153 #include "content/public/browser/browser_main_parts.h" |
152 #include "content/public/browser/browser_ppapi_host.h" | 154 #include "content/public/browser/browser_ppapi_host.h" |
153 #include "content/public/browser/browser_thread.h" | 155 #include "content/public/browser/browser_thread.h" |
154 #include "content/public/browser/browser_url_handler.h" | 156 #include "content/public/browser/browser_url_handler.h" |
155 #include "content/public/browser/child_process_data.h" | 157 #include "content/public/browser/child_process_data.h" |
(...skipping 3159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3315 render_frame_host, std::move(source), std::move(request)); | 3317 render_frame_host, std::move(source), std::move(request)); |
3316 #else | 3318 #else |
3317 // Chrome's media remoting implementation depends on the Media Router | 3319 // Chrome's media remoting implementation depends on the Media Router |
3318 // infrastructure to identify remote sinks and provide the user interface for | 3320 // infrastructure to identify remote sinks and provide the user interface for |
3319 // sink selection. In the case where the Media Router is not present, simply | 3321 // sink selection. In the case where the Media Router is not present, simply |
3320 // drop the interface request. This will prevent code paths for media remoting | 3322 // drop the interface request. This will prevent code paths for media remoting |
3321 // in the renderer process from activating. | 3323 // in the renderer process from activating. |
3322 #endif | 3324 #endif |
3323 } | 3325 } |
3324 #endif // BUILDFLAG(ENABLE_MEDIA_REMOTING) | 3326 #endif // BUILDFLAG(ENABLE_MEDIA_REMOTING) |
| 3327 |
| 3328 void ChromeContentBrowserClient::GetTaskSchedulerInitializationParams( |
| 3329 std::vector<base::SchedulerWorkerPoolParams>* params_vector, |
| 3330 base::TaskScheduler::WorkerPoolIndexForTraitsCallback* |
| 3331 index_to_traits_callback) { |
| 3332 DCHECK(params_vector); |
| 3333 DCHECK(index_to_traits_callback); |
| 3334 // If this call fails, content will fall back to the default params. |
| 3335 *params_vector = |
| 3336 task_scheduler_util::variations:: |
| 3337 GetBrowserSchedulerWorkerPoolParamsFromVariations(); |
| 3338 *index_to_traits_callback = base::Bind(&task_scheduler_util::initialization:: |
| 3339 BrowserWorkerPoolIndexForTraits); |
| 3340 } |
| 3341 |
| 3342 void ChromeContentBrowserClient:: |
| 3343 PerformExperimentalTaskSchedulerRedirections() { |
| 3344 task_scheduler_util::variations:: |
| 3345 MaybePerformBrowserTaskSchedulerRedirection(); |
| 3346 } |
OLD | NEW |