| 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 "content/browser/browser_main_loop.h" | 5 #include "content/browser/browser_main_loop.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/bind.h" | 13 #include "base/bind.h" |
| 14 #include "base/command_line.h" | 14 #include "base/command_line.h" |
| 15 #include "base/feature_list.h" | 15 #include "base/feature_list.h" |
| 16 #include "base/location.h" | 16 #include "base/location.h" |
| 17 #include "base/logging.h" | 17 #include "base/logging.h" |
| 18 #include "base/macros.h" | 18 #include "base/macros.h" |
| 19 #include "base/memory/memory_pressure_monitor.h" | 19 #include "base/memory/memory_pressure_monitor.h" |
| 20 #include "base/memory/ptr_util.h" | 20 #include "base/memory/ptr_util.h" |
| 21 #include "base/metrics/field_trial.h" | 21 #include "base/metrics/field_trial.h" |
| 22 #include "base/metrics/histogram.h" | 22 #include "base/metrics/histogram_macros.h" |
| 23 #include "base/metrics/user_metrics.h" | 23 #include "base/metrics/user_metrics.h" |
| 24 #include "base/pending_task.h" | 24 #include "base/pending_task.h" |
| 25 #include "base/power_monitor/power_monitor.h" | 25 #include "base/power_monitor/power_monitor.h" |
| 26 #include "base/power_monitor/power_monitor_device_source.h" | 26 #include "base/power_monitor/power_monitor_device_source.h" |
| 27 #include "base/process/process_metrics.h" | 27 #include "base/process/process_metrics.h" |
| 28 #include "base/run_loop.h" | 28 #include "base/run_loop.h" |
| 29 #include "base/single_thread_task_runner.h" | 29 #include "base/single_thread_task_runner.h" |
| 30 #include "base/strings/string_number_conversions.h" | 30 #include "base/strings/string_number_conversions.h" |
| 31 #include "base/strings/string_split.h" | 31 #include "base/strings/string_split.h" |
| 32 #include "base/system_monitor/system_monitor.h" | 32 #include "base/system_monitor/system_monitor.h" |
| (...skipping 1513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1546 scoped_refptr<base::SingleThreadTaskRunner> worker_task_runner = | 1546 scoped_refptr<base::SingleThreadTaskRunner> worker_task_runner = |
| 1547 audio_thread_->task_runner(); | 1547 audio_thread_->task_runner(); |
| 1548 audio_manager_ = media::AudioManager::Create(std::move(audio_task_runner), | 1548 audio_manager_ = media::AudioManager::Create(std::move(audio_task_runner), |
| 1549 std::move(worker_task_runner), | 1549 std::move(worker_task_runner), |
| 1550 MediaInternals::GetInstance()); | 1550 MediaInternals::GetInstance()); |
| 1551 } | 1551 } |
| 1552 CHECK(audio_manager_); | 1552 CHECK(audio_manager_); |
| 1553 } | 1553 } |
| 1554 | 1554 |
| 1555 } // namespace content | 1555 } // namespace content |
| OLD | NEW |