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 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_WEB_CONTENTS_VIDEO_CAPTURE_DEVICE_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_WEB_CONTENTS_VIDEO_CAPTURE_DEVICE_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_WEB_CONTENTS_VIDEO_CAPTURE_DEVICE_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_WEB_CONTENTS_VIDEO_CAPTURE_DEVICE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
12 #include "media/video/capture/video_capture_device.h" | 12 #include "media/video/capture/video_capture_device.h" |
13 | 13 |
14 namespace content { | 14 namespace content { |
15 | 15 |
16 class RenderWidgetHost; | 16 class VideoCaptureDeviceImpl; |
17 | 17 |
18 // A virtualized VideoCaptureDevice that mirrors the displayed contents of a | 18 // A virtualized VideoCaptureDevice that mirrors the displayed contents of a |
19 // tab (accessed via its associated WebContents instance), producing a stream of | 19 // tab (accessed via its associated WebContents instance), producing a stream of |
20 // video frames. | 20 // video frames. |
21 // | 21 // |
22 // An instance is created by providing a device_id. The device_id contains the | 22 // An instance is created by providing a device_id. The device_id contains the |
23 // routing ID for a RenderViewHost, and from the RenderViewHost instance, a | 23 // routing ID for a RenderViewHost, and from the RenderViewHost instance, a |
24 // reference to its associated WebContents instance is acquired. From then on, | 24 // reference to its associated WebContents instance is acquired. From then on, |
25 // WebContentsVideoCaptureDevice will capture from whatever render view is | 25 // WebContentsVideoCaptureDevice will capture from whatever render view is |
26 // currently associated with that WebContents instance. This allows the | 26 // currently associated with that WebContents instance. This allows the |
(...skipping 13 matching lines...) Expand all Loading... |
40 static media::VideoCaptureDevice* Create(const std::string& device_id); | 40 static media::VideoCaptureDevice* Create(const std::string& device_id); |
41 | 41 |
42 virtual ~WebContentsVideoCaptureDevice(); | 42 virtual ~WebContentsVideoCaptureDevice(); |
43 | 43 |
44 // VideoCaptureDevice implementation. | 44 // VideoCaptureDevice implementation. |
45 virtual void AllocateAndStart(const media::VideoCaptureParams& params, | 45 virtual void AllocateAndStart(const media::VideoCaptureParams& params, |
46 scoped_ptr<Client> client) OVERRIDE; | 46 scoped_ptr<Client> client) OVERRIDE; |
47 virtual void StopAndDeAllocate() OVERRIDE; | 47 virtual void StopAndDeAllocate() OVERRIDE; |
48 | 48 |
49 private: | 49 private: |
50 class Impl; | |
51 | |
52 WebContentsVideoCaptureDevice(int render_process_id, int render_view_id); | 50 WebContentsVideoCaptureDevice(int render_process_id, int render_view_id); |
53 | 51 |
54 const scoped_ptr<Impl> impl_; | 52 const scoped_ptr<VideoCaptureDeviceImpl> impl_; |
55 | 53 |
56 DISALLOW_COPY_AND_ASSIGN(WebContentsVideoCaptureDevice); | 54 DISALLOW_COPY_AND_ASSIGN(WebContentsVideoCaptureDevice); |
57 }; | 55 }; |
58 | 56 |
59 | 57 |
60 } // namespace content | 58 } // namespace content |
61 | 59 |
62 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_WEB_CONTENTS_VIDEO_CAPTURE_DEVICE
_H_ | 60 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_WEB_CONTENTS_VIDEO_CAPTURE_DEVICE
_H_ |
OLD | NEW |