| 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/renderer_host/media/media_stream_manager.h" | 5 #include "content/browser/renderer_host/media/media_stream_manager.h" |
| 6 | 6 |
| 7 #include <list> | 7 #include <list> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/logging.h" | 13 #include "base/logging.h" |
| 14 #include "base/power_monitor/power_monitor.h" | 14 #include "base/power_monitor/power_monitor.h" |
| 15 #include "base/rand_util.h" | 15 #include "base/rand_util.h" |
| 16 #include "base/run_loop.h" | 16 #include "base/run_loop.h" |
| 17 #include "base/strings/stringprintf.h" | 17 #include "base/strings/stringprintf.h" |
| 18 #include "base/threading/thread.h" | 18 #include "base/threading/thread.h" |
| 19 #include "content/browser/browser_main_loop.h" | 19 #include "content/browser/browser_main_loop.h" |
| 20 #include "content/browser/media/capture/web_contents_capture_util.h" | 20 #include "content/browser/media/capture/web_contents_capture_util.h" |
| 21 #include "content/browser/renderer_host/media/audio_input_device_manager.h" | 21 #include "content/browser/renderer_host/media/audio_input_device_manager.h" |
| 22 #include "content/browser/renderer_host/media/device_request_message_filter.h" | |
| 23 #include "content/browser/renderer_host/media/media_capture_devices_impl.h" | 22 #include "content/browser/renderer_host/media/media_capture_devices_impl.h" |
| 24 #include "content/browser/renderer_host/media/media_stream_requester.h" | 23 #include "content/browser/renderer_host/media/media_stream_requester.h" |
| 25 #include "content/browser/renderer_host/media/media_stream_ui_proxy.h" | 24 #include "content/browser/renderer_host/media/media_stream_ui_proxy.h" |
| 26 #include "content/browser/renderer_host/media/video_capture_manager.h" | 25 #include "content/browser/renderer_host/media/video_capture_manager.h" |
| 27 #include "content/browser/renderer_host/render_process_host_impl.h" | 26 #include "content/browser/renderer_host/render_process_host_impl.h" |
| 28 #include "content/public/browser/browser_thread.h" | 27 #include "content/public/browser/browser_thread.h" |
| 29 #include "content/public/browser/content_browser_client.h" | 28 #include "content/public/browser/content_browser_client.h" |
| 30 #include "content/public/browser/media_device_id.h" | 29 #include "content/public/browser/media_device_id.h" |
| 31 #include "content/public/browser/media_observer.h" | 30 #include "content/public/browser/media_observer.h" |
| 32 #include "content/public/browser/media_request_state.h" | 31 #include "content/public/browser/media_request_state.h" |
| (...skipping 2084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2117 } | 2116 } |
| 2118 } | 2117 } |
| 2119 | 2118 |
| 2120 void MediaStreamManager::SetKeyboardMicOnDeviceThread() { | 2119 void MediaStreamManager::SetKeyboardMicOnDeviceThread() { |
| 2121 DCHECK(device_task_runner_->BelongsToCurrentThread()); | 2120 DCHECK(device_task_runner_->BelongsToCurrentThread()); |
| 2122 audio_manager_->SetHasKeyboardMic(); | 2121 audio_manager_->SetHasKeyboardMic(); |
| 2123 } | 2122 } |
| 2124 #endif | 2123 #endif |
| 2125 | 2124 |
| 2126 } // namespace content | 2125 } // namespace content |
| OLD | NEW |