OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_IN_PROCESS_VIDEO_CAPTURE_DEVICE_LAUN
CHER_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_IN_PROCESS_VIDEO_CAPTURE_DEVICE_LAUN
CHER_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_IN_PROCESS_VIDEO_CAPTURE_DEVICE_LAUN
CHER_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_IN_PROCESS_VIDEO_CAPTURE_DEVICE_LAUN
CHER_H_ |
7 | 7 |
| 8 #include "base/single_thread_task_runner.h" |
8 #include "content/browser/renderer_host/media/video_capture_controller.h" | 9 #include "content/browser/renderer_host/media/video_capture_controller.h" |
9 #include "content/browser/renderer_host/media/video_capture_provider.h" | 10 #include "content/browser/renderer_host/media/video_capture_provider.h" |
10 #include "content/public/common/media_stream_request.h" | 11 #include "content/public/common/media_stream_request.h" |
11 #include "media/capture/video/video_capture_device.h" | 12 #include "media/capture/video/video_capture_device.h" |
12 #include "media/capture/video/video_capture_device_client.h" | 13 #include "media/capture/video/video_capture_device_client.h" |
13 #include "media/capture/video/video_capture_device_descriptor.h" | 14 #include "media/capture/video/video_capture_device_descriptor.h" |
14 #include "media/capture/video/video_capture_system.h" | 15 #include "media/capture/video/video_capture_system.h" |
15 | 16 |
16 namespace content { | 17 namespace content { |
17 | 18 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 ReceiveDeviceCallback result_callback); | 73 ReceiveDeviceCallback result_callback); |
73 | 74 |
74 const scoped_refptr<base::SingleThreadTaskRunner> device_task_runner_; | 75 const scoped_refptr<base::SingleThreadTaskRunner> device_task_runner_; |
75 media::VideoCaptureSystem* const video_capture_system_; | 76 media::VideoCaptureSystem* const video_capture_system_; |
76 State state_; | 77 State state_; |
77 }; | 78 }; |
78 | 79 |
79 } // namespace content | 80 } // namespace content |
80 | 81 |
81 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_IN_PROCESS_VIDEO_CAPTURE_DEVICE_L
AUNCHER_H_ | 82 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_IN_PROCESS_VIDEO_CAPTURE_DEVICE_L
AUNCHER_H_ |
OLD | NEW |