| 
									
										
										
										
											2013-07-31 11:08:45 -07:00
										 |  |  | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
 | 
					
						
							|  |  |  | // Use of this source code is governed by a BSD-style license that can be
 | 
					
						
							|  |  |  | // found in the LICENSE-CHROMIUM file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-19 13:56:58 -07:00
										 |  |  | #ifndef SHELL_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_
 | 
					
						
							|  |  |  | #define SHELL_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_
 | 
					
						
							| 
									
										
										
										
											2013-07-31 11:08:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-18 15:06:57 -07:00
										 |  |  | #include <string>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-31 11:08:45 -07:00
										 |  |  | #include "base/memory/singleton.h"
 | 
					
						
							|  |  |  | #include "content/public/browser/media_observer.h"
 | 
					
						
							| 
									
										
										
										
											2019-01-21 21:58:04 +05:30
										 |  |  | #include "content/public/browser/media_stream_request.h"
 | 
					
						
							|  |  |  | #include "third_party/blink/public/common/mediastream/media_stream_request.h"
 | 
					
						
							| 
									
										
										
										
											2013-07-31 11:08:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-19 14:23:04 -07:00
										 |  |  | namespace electron { | 
					
						
							| 
									
										
										
										
											2013-07-31 11:08:45 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | // This singleton is used to receive updates about media events from the content
 | 
					
						
							|  |  |  | // layer.
 | 
					
						
							|  |  |  | class MediaCaptureDevicesDispatcher : public content::MediaObserver { | 
					
						
							|  |  |  |  public: | 
					
						
							|  |  |  |   static MediaCaptureDevicesDispatcher* GetInstance(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-07 16:13:01 -04:00
										 |  |  |   // Methods for observers. Called on UI thread.
 | 
					
						
							| 
									
										
										
										
											2019-01-21 21:58:04 +05:30
										 |  |  |   const blink::MediaStreamDevices& GetAudioCaptureDevices(); | 
					
						
							|  |  |  |   const blink::MediaStreamDevices& GetVideoCaptureDevices(); | 
					
						
							| 
									
										
										
										
											2013-10-07 16:13:01 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Helper to get the default devices which can be used by the media request.
 | 
					
						
							|  |  |  |   // Uses the first available devices if the default devices are not available.
 | 
					
						
							|  |  |  |   // If the return list is empty, it means there is no available device on the
 | 
					
						
							|  |  |  |   // OS.
 | 
					
						
							|  |  |  |   // Called on the UI thread.
 | 
					
						
							| 
									
										
										
										
											2013-07-31 11:08:45 -07:00
										 |  |  |   void GetDefaultDevices(bool audio, | 
					
						
							|  |  |  |                          bool video, | 
					
						
							| 
									
										
										
										
											2019-01-21 21:58:04 +05:30
										 |  |  |                          blink::MediaStreamDevices* devices); | 
					
						
							| 
									
										
										
										
											2013-07-31 11:08:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-07 16:13:01 -04:00
										 |  |  |   // Helpers for picking particular requested devices, identified by raw id.
 | 
					
						
							|  |  |  |   // If the device requested is not available it will return NULL.
 | 
					
						
							| 
									
										
										
										
											2019-01-21 21:58:04 +05:30
										 |  |  |   const blink::MediaStreamDevice* GetRequestedAudioDevice( | 
					
						
							| 
									
										
										
										
											2018-04-17 21:46:27 -04:00
										 |  |  |       const std::string& requested_audio_device_id); | 
					
						
							| 
									
										
										
										
											2019-01-21 21:58:04 +05:30
										 |  |  |   const blink::MediaStreamDevice* GetRequestedVideoDevice( | 
					
						
							| 
									
										
										
										
											2018-04-17 21:46:27 -04:00
										 |  |  |       const std::string& requested_video_device_id); | 
					
						
							| 
									
										
										
										
											2013-10-07 16:13:01 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Returns the first available audio or video device, or NULL if no devices
 | 
					
						
							|  |  |  |   // are available.
 | 
					
						
							| 
									
										
										
										
											2019-01-21 21:58:04 +05:30
										 |  |  |   const blink::MediaStreamDevice* GetFirstAvailableAudioDevice(); | 
					
						
							|  |  |  |   const blink::MediaStreamDevice* GetFirstAvailableVideoDevice(); | 
					
						
							| 
									
										
										
										
											2013-10-07 16:13:01 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Unittests that do not require actual device enumeration should call this
 | 
					
						
							|  |  |  |   // API on the singleton. It is safe to call this multiple times on the
 | 
					
						
							| 
									
										
										
										
											2020-10-13 10:25:21 -07:00
										 |  |  |   // singleton.
 | 
					
						
							| 
									
										
										
										
											2013-10-07 16:13:01 -04:00
										 |  |  |   void DisableDeviceEnumerationForTesting(); | 
					
						
							| 
									
										
										
										
											2013-07-31 11:08:45 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Overridden from content::MediaObserver:
 | 
					
						
							| 
									
										
										
										
											2015-06-05 12:07:27 +08:00
										 |  |  |   void OnAudioCaptureDevicesChanged() override; | 
					
						
							|  |  |  |   void OnVideoCaptureDevicesChanged() override; | 
					
						
							| 
									
										
										
										
											2018-04-17 21:46:27 -04:00
										 |  |  |   void OnMediaRequestStateChanged(int render_process_id, | 
					
						
							|  |  |  |                                   int render_view_id, | 
					
						
							|  |  |  |                                   int page_request_id, | 
					
						
							|  |  |  |                                   const GURL& security_origin, | 
					
						
							| 
									
										
										
										
											2019-07-02 18:22:09 -07:00
										 |  |  |                                   blink::mojom::MediaStreamType stream_type, | 
					
						
							| 
									
										
										
										
											2018-04-17 21:46:27 -04:00
										 |  |  |                                   content::MediaRequestState state) override; | 
					
						
							| 
									
										
										
										
											2015-06-05 12:07:27 +08:00
										 |  |  |   void OnCreatingAudioStream(int render_process_id, | 
					
						
							|  |  |  |                              int render_view_id) override; | 
					
						
							| 
									
										
										
										
											2016-07-04 15:06:05 +09:00
										 |  |  |   void OnSetCapturingLinkSecured(int render_process_id, | 
					
						
							|  |  |  |                                  int render_frame_id, | 
					
						
							|  |  |  |                                  int page_request_id, | 
					
						
							| 
									
										
										
										
											2019-07-02 18:22:09 -07:00
										 |  |  |                                  blink::mojom::MediaStreamType stream_type, | 
					
						
							| 
									
										
										
										
											2016-07-04 15:06:05 +09:00
										 |  |  |                                  bool is_secure) override; | 
					
						
							| 
									
										
										
										
											2013-07-31 11:08:45 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |  private: | 
					
						
							| 
									
										
										
										
											2015-12-07 19:55:01 +08:00
										 |  |  |   friend struct base::DefaultSingletonTraits<MediaCaptureDevicesDispatcher>; | 
					
						
							| 
									
										
										
										
											2013-07-31 11:08:45 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   MediaCaptureDevicesDispatcher(); | 
					
						
							| 
									
										
										
										
											2018-04-17 16:03:51 -07:00
										 |  |  |   ~MediaCaptureDevicesDispatcher() override; | 
					
						
							| 
									
										
										
										
											2013-07-31 11:08:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-21 21:58:04 +05:30
										 |  |  |   // Only for testing, a list of cached audio capture devices.
 | 
					
						
							|  |  |  |   blink::MediaStreamDevices test_audio_devices_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Only for testing, a list of cached video capture devices.
 | 
					
						
							|  |  |  |   blink::MediaStreamDevices test_video_devices_; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-07 16:13:01 -04:00
										 |  |  |   // Flag used by unittests to disable device enumeration.
 | 
					
						
							| 
									
										
										
										
											2021-01-26 19:16:21 +01:00
										 |  |  |   bool is_device_enumeration_disabled_ = false; | 
					
						
							| 
									
										
										
										
											2013-10-07 16:13:01 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   DISALLOW_COPY_AND_ASSIGN(MediaCaptureDevicesDispatcher); | 
					
						
							| 
									
										
										
										
											2013-07-31 11:08:45 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-19 14:23:04 -07:00
										 |  |  | }  // namespace electron
 | 
					
						
							| 
									
										
										
										
											2013-07-31 11:08:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-19 13:56:58 -07:00
										 |  |  | #endif  // SHELL_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_
 |