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/rand_util.h" | 14 #include "base/rand_util.h" |
15 #include "base/run_loop.h" | 15 #include "base/run_loop.h" |
16 #include "base/strings/stringprintf.h" | 16 #include "base/strings/stringprintf.h" |
17 #include "base/threading/thread.h" | 17 #include "base/threading/thread.h" |
18 #include "content/browser/browser_main_loop.h" | 18 #include "content/browser/browser_main_loop.h" |
19 #include "content/browser/renderer_host/media/audio_input_device_manager.h" | 19 #include "content/browser/renderer_host/media/audio_input_device_manager.h" |
20 #include "content/browser/renderer_host/media/device_request_message_filter.h" | 20 #include "content/browser/renderer_host/media/device_request_message_filter.h" |
| 21 #include "content/browser/renderer_host/media/media_capture_devices_impl.h" |
21 #include "content/browser/renderer_host/media/media_stream_requester.h" | 22 #include "content/browser/renderer_host/media/media_stream_requester.h" |
22 #include "content/browser/renderer_host/media/media_stream_ui_proxy.h" | 23 #include "content/browser/renderer_host/media/media_stream_ui_proxy.h" |
23 #include "content/browser/renderer_host/media/video_capture_manager.h" | 24 #include "content/browser/renderer_host/media/video_capture_manager.h" |
24 #include "content/browser/renderer_host/media/web_contents_capture_util.h" | 25 #include "content/browser/renderer_host/media/web_contents_capture_util.h" |
25 #include "content/browser/renderer_host/render_process_host_impl.h" | 26 #include "content/browser/renderer_host/render_process_host_impl.h" |
26 #include "content/public/browser/browser_thread.h" | 27 #include "content/public/browser/browser_thread.h" |
27 #include "content/public/browser/content_browser_client.h" | 28 #include "content/public/browser/content_browser_client.h" |
28 #include "content/public/browser/media_device_id.h" | 29 #include "content/public/browser/media_device_id.h" |
29 #include "content/public/browser/media_observer.h" | 30 #include "content/public/browser/media_observer.h" |
30 #include "content/public/browser/media_request_state.h" | 31 #include "content/public/browser/media_request_state.h" |
(...skipping 1701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1732 } | 1733 } |
1733 | 1734 |
1734 audio_input_device_manager_ = NULL; | 1735 audio_input_device_manager_ = NULL; |
1735 video_capture_manager_ = NULL; | 1736 video_capture_manager_ = NULL; |
1736 } | 1737 } |
1737 | 1738 |
1738 void MediaStreamManager::NotifyDevicesChanged( | 1739 void MediaStreamManager::NotifyDevicesChanged( |
1739 MediaStreamType stream_type, | 1740 MediaStreamType stream_type, |
1740 const StreamDeviceInfoArray& devices) { | 1741 const StreamDeviceInfoArray& devices) { |
1741 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 1742 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
1742 MediaObserver* media_observer = | |
1743 GetContentClient()->browser()->GetMediaObserver(); | |
1744 if (media_observer == NULL) | |
1745 return; | |
1746 | |
1747 // Map the devices to MediaStreamDevices. | 1743 // Map the devices to MediaStreamDevices. |
1748 MediaStreamDevices new_devices; | 1744 MediaStreamDevices new_devices; |
1749 for (StreamDeviceInfoArray::const_iterator it = devices.begin(); | 1745 for (StreamDeviceInfoArray::const_iterator it = devices.begin(); |
1750 it != devices.end(); ++it) { | 1746 it != devices.end(); ++it) { |
1751 new_devices.push_back(it->device); | 1747 new_devices.push_back(it->device); |
1752 } | 1748 } |
1753 | 1749 |
1754 if (IsAudioMediaType(stream_type)) { | 1750 if (IsAudioMediaType(stream_type)) { |
1755 media_observer->OnAudioCaptureDevicesChanged(new_devices); | 1751 MediaCaptureDevicesImpl::GetInstance()->OnAudioCaptureDevicesChanged( |
| 1752 new_devices); |
1756 } else if (IsVideoMediaType(stream_type)) { | 1753 } else if (IsVideoMediaType(stream_type)) { |
1757 media_observer->OnVideoCaptureDevicesChanged(new_devices); | 1754 MediaCaptureDevicesImpl::GetInstance()->OnVideoCaptureDevicesChanged( |
| 1755 new_devices); |
1758 } else { | 1756 } else { |
1759 NOTREACHED(); | 1757 NOTREACHED(); |
1760 } | 1758 } |
1761 } | 1759 } |
1762 | 1760 |
1763 bool MediaStreamManager::RequestDone(const DeviceRequest& request) const { | 1761 bool MediaStreamManager::RequestDone(const DeviceRequest& request) const { |
1764 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 1762 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
1765 | 1763 |
1766 const bool requested_audio = IsAudioMediaType(request.audio_type()); | 1764 const bool requested_audio = IsAudioMediaType(request.audio_type()); |
1767 const bool requested_video = IsVideoMediaType(request.video_type()); | 1765 const bool requested_video = IsVideoMediaType(request.video_type()); |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1811 } | 1809 } |
1812 | 1810 |
1813 // Always do enumeration even though some enumeration is in progress, | 1811 // Always do enumeration even though some enumeration is in progress, |
1814 // because those enumeration commands could be sent before these devices | 1812 // because those enumeration commands could be sent before these devices |
1815 // change. | 1813 // change. |
1816 ++active_enumeration_ref_count_[stream_type]; | 1814 ++active_enumeration_ref_count_[stream_type]; |
1817 GetDeviceManager(stream_type)->EnumerateDevices(stream_type); | 1815 GetDeviceManager(stream_type)->EnumerateDevices(stream_type); |
1818 } | 1816 } |
1819 | 1817 |
1820 } // namespace content | 1818 } // namespace content |
OLD | NEW |