OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_DEVICES_MANAGER_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_DEVICES_MANAGER_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_DEVICES_MANAGER_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_DEVICES_MANAGER_H_ |
7 | 7 |
8 #include <array> | 8 #include <array> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "base/system_monitor/system_monitor.h" | 14 #include "base/system_monitor/system_monitor.h" |
15 #include "content/common/content_export.h" | 15 #include "content/common/content_export.h" |
16 #include "content/common/media/media_devices.h" | 16 #include "content/common/media/media_devices.h" |
17 #include "media/capture/video/video_capture_device_descriptor.h" | 17 #include "media/capture/video/video_capture_device_descriptor.h" |
18 | 18 |
19 namespace base { | |
20 class SingleThreadTaskRunner; | |
21 } | |
22 | |
23 namespace media { | 19 namespace media { |
24 class AudioManager; | 20 class AudioManager; |
25 } | 21 } |
26 | 22 |
27 namespace content { | 23 namespace content { |
28 | 24 |
29 class MediaStreamManager; | 25 class MediaStreamManager; |
30 class VideoCaptureManager; | 26 class VideoCaptureManager; |
31 | 27 |
32 // Use MediaDeviceType values to index on this type. | 28 // Use MediaDeviceType values to index on this type. |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 bool monitoring_started_; | 146 bool monitoring_started_; |
151 | 147 |
152 base::WeakPtrFactory<MediaDevicesManager> weak_factory_; | 148 base::WeakPtrFactory<MediaDevicesManager> weak_factory_; |
153 | 149 |
154 DISALLOW_COPY_AND_ASSIGN(MediaDevicesManager); | 150 DISALLOW_COPY_AND_ASSIGN(MediaDevicesManager); |
155 }; | 151 }; |
156 | 152 |
157 } // namespace content | 153 } // namespace content |
158 | 154 |
159 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_DEVICES_MANAGER_H_ | 155 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_DEVICES_MANAGER_H_ |
OLD | NEW |