Index: content/browser/renderer_host/media/web_contents_video_capture_device.h |
diff --git a/content/browser/renderer_host/media/web_contents_video_capture_device.h b/content/browser/renderer_host/media/web_contents_video_capture_device.h |
index cd99a225a57b32ca70deb2519c627cc5b3c9af4d..e9140d3dd8f4df24b8ff4d300bb21a965ad4c5f0 100644 |
--- a/content/browser/renderer_host/media/web_contents_video_capture_device.h |
+++ b/content/browser/renderer_host/media/web_contents_video_capture_device.h |
@@ -13,7 +13,7 @@ |
namespace content { |
-class RenderWidgetHost; |
+class VideoCaptureDeviceImpl; |
// A virtualized VideoCaptureDevice that mirrors the displayed contents of a |
// tab (accessed via its associated WebContents instance), producing a stream of |
@@ -47,11 +47,9 @@ class CONTENT_EXPORT WebContentsVideoCaptureDevice |
virtual void StopAndDeAllocate() OVERRIDE; |
private: |
- class Impl; |
- |
WebContentsVideoCaptureDevice(int render_process_id, int render_view_id); |
- const scoped_ptr<Impl> impl_; |
+ const scoped_ptr<VideoCaptureDeviceImpl> impl_; |
DISALLOW_COPY_AND_ASSIGN(WebContentsVideoCaptureDevice); |
}; |