OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | |
Sergey Ulanov
2014/03/06 08:26:40
nit: don't need (c)
michaelbai
2014/03/06 19:27:20
Done.
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_CAPTURE_DEVICES_H | |
6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_CAPTURE_DEVICES_H | |
7 | |
8 #include "base/memory/singleton.h" | |
9 #include "base/observer_list.h" | |
Sergey Ulanov
2014/03/06 08:26:40
this header is not used.
michaelbai
2014/03/06 19:27:20
Done.
| |
10 #include "content/public/browser/media_capture_devices.h" | |
11 #include "content/public/browser/media_observer.h" | |
12 | |
13 namespace content { | |
14 | |
15 class MediaCaptureDevicesImpl : public MediaCaptureDevices { | |
16 public: | |
17 static MediaCaptureDevicesImpl* GetInstance(); | |
Sergey Ulanov
2014/03/06 08:26:40
Is this necessary, given that there is MediaCaptur
michaelbai
2014/03/06 19:27:20
Yes, it is required by Singleton<> implementation.
| |
18 | |
19 // Overriden from MediaCaptureDevices | |
20 virtual const MediaStreamDevices& GetAudioCaptureDevices() OVERRIDE; | |
21 virtual const MediaStreamDevices& GetVideoCaptureDevices() OVERRIDE; | |
22 | |
23 // Called by MediaStreamManager to notify the change of media capture | |
24 // devices, these 2 methods are called in IO thread. | |
25 void OnAudioCaptureDevicesChanged(const MediaStreamDevices& devices); | |
26 void OnVideoCaptureDevicesChanged(const MediaStreamDevices& devices); | |
27 | |
28 private: | |
29 friend struct DefaultSingletonTraits<MediaCaptureDevicesImpl>; | |
30 MediaCaptureDevicesImpl(); | |
31 virtual ~MediaCaptureDevicesImpl(); | |
32 | |
33 // Called by the MediaObserver() functions, executed on UI thread. | |
34 void UpdateAudioDevicesOnUIThread(const content::MediaStreamDevices& devices); | |
35 void UpdateVideoDevicesOnUIThread(const content::MediaStreamDevices& devices); | |
36 | |
37 // Flag to indicate if device enumeration has been done/doing. | |
38 // Only accessed on UI thread. | |
39 bool devices_enumerated_; | |
40 | |
41 // A list of cached audio capture devices. | |
42 MediaStreamDevices audio_devices_; | |
43 | |
44 // A list of cached video capture devices. | |
45 MediaStreamDevices video_devices_; | |
46 | |
47 DISALLOW_COPY_AND_ASSIGN(MediaCaptureDevicesImpl); | |
48 }; | |
49 | |
50 } // namespace content | |
51 | |
52 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_CAPTURE_DEVICES_H | |
OLD | NEW |