| 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> |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 #include "content/browser/time_zone_monitor.h" | 66 #include "content/browser/time_zone_monitor.h" |
| 67 #include "content/browser/utility_process_host_impl.h" | 67 #include "content/browser/utility_process_host_impl.h" |
| 68 #include "content/browser/webui/content_web_ui_controller_factory.h" | 68 #include "content/browser/webui/content_web_ui_controller_factory.h" |
| 69 #include "content/browser/webui/url_data_manager.h" | 69 #include "content/browser/webui/url_data_manager.h" |
| 70 #include "content/common/content_switches_internal.h" | 70 #include "content/common/content_switches_internal.h" |
| 71 #include "content/common/host_discardable_shared_memory_manager.h" | 71 #include "content/common/host_discardable_shared_memory_manager.h" |
| 72 #include "content/common/host_shared_bitmap_manager.h" | 72 #include "content/common/host_shared_bitmap_manager.h" |
| 73 #include "content/common/mojo/mojo_shell_connection_impl.h" | 73 #include "content/common/mojo/mojo_shell_connection_impl.h" |
| 74 #include "content/public/browser/browser_main_parts.h" | 74 #include "content/public/browser/browser_main_parts.h" |
| 75 #include "content/public/browser/content_browser_client.h" | 75 #include "content/public/browser/content_browser_client.h" |
| 76 #include "content/public/browser/geolocation_provider.h" |
| 76 #include "content/public/browser/render_process_host.h" | 77 #include "content/public/browser/render_process_host.h" |
| 77 #include "content/public/browser/tracing_controller.h" | 78 #include "content/public/browser/tracing_controller.h" |
| 78 #include "content/public/common/content_client.h" | 79 #include "content/public/common/content_client.h" |
| 79 #include "content/public/common/content_switches.h" | 80 #include "content/public/common/content_switches.h" |
| 80 #include "content/public/common/main_function_params.h" | 81 #include "content/public/common/main_function_params.h" |
| 81 #include "content/public/common/result_codes.h" | 82 #include "content/public/common/result_codes.h" |
| 82 #include "device/battery/battery_status_service.h" | 83 #include "device/battery/battery_status_service.h" |
| 83 #include "media/base/media.h" | 84 #include "media/base/media.h" |
| 84 #include "media/base/user_input_monitor.h" | 85 #include "media/base/user_input_monitor.h" |
| 85 #include "media/midi/midi_manager.h" | 86 #include "media/midi/midi_manager.h" |
| (...skipping 1431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1517 scoped_refptr<base::SingleThreadTaskRunner> worker_task_runner = | 1518 scoped_refptr<base::SingleThreadTaskRunner> worker_task_runner = |
| 1518 audio_thread_->task_runner(); | 1519 audio_thread_->task_runner(); |
| 1519 audio_manager_ = media::AudioManager::Create(std::move(audio_task_runner), | 1520 audio_manager_ = media::AudioManager::Create(std::move(audio_task_runner), |
| 1520 std::move(worker_task_runner), | 1521 std::move(worker_task_runner), |
| 1521 MediaInternals::GetInstance()); | 1522 MediaInternals::GetInstance()); |
| 1522 } | 1523 } |
| 1523 CHECK(audio_manager_); | 1524 CHECK(audio_manager_); |
| 1524 } | 1525 } |
| 1525 | 1526 |
| 1526 } // namespace content | 1527 } // namespace content |
| OLD | NEW |