| 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_RENDERER_MEDIA_LOCAL_VIDEO_CAPTURE_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_LOCAL_VIDEO_CAPTURE_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_LOCAL_VIDEO_CAPTURE_H_ | 6 #define CONTENT_RENDERER_MEDIA_LOCAL_VIDEO_CAPTURE_H_ |
| 7 | 7 |
| 8 #include "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
| 9 #include "content/common/media/video_capture.h" | 9 #include "content/common/media/video_capture.h" |
| 10 #include "media/video/capture/video_capture.h" | 10 #include "media/video/capture/video_capture.h" |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 friend class LocalVideoCaptureTest; | 61 friend class LocalVideoCaptureTest; |
| 62 | 62 |
| 63 media::VideoCaptureSessionId video_stream_id_; | 63 media::VideoCaptureSessionId video_stream_id_; |
| 64 scoped_refptr<VideoCaptureImplManager> vc_manager_; | 64 scoped_refptr<VideoCaptureImplManager> vc_manager_; |
| 65 media::VideoCaptureCapability capability_; | 65 media::VideoCaptureCapability capability_; |
| 66 base::Closure error_cb_; | 66 base::Closure error_cb_; |
| 67 RepaintCB repaint_cb_; | 67 RepaintCB repaint_cb_; |
| 68 media::VideoCapture* capture_engine_; | 68 media::VideoCapture* capture_engine_; |
| 69 scoped_refptr<base::MessageLoopProxy> message_loop_proxy_; | 69 scoped_refptr<base::MessageLoopProxy> message_loop_proxy_; |
| 70 scoped_ptr<media::VideoCaptureHandlerProxy> handler_proxy_; | 70 scoped_ptr<media::VideoCaptureHandlerProxy> handler_proxy_; |
| 71 video_capture::State state_; | 71 VideoCaptureState state_; |
| 72 | 72 |
| 73 DISALLOW_COPY_AND_ASSIGN(LocalVideoCapture); | 73 DISALLOW_COPY_AND_ASSIGN(LocalVideoCapture); |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // namespace content | 76 } // namespace content |
| 77 | 77 |
| 78 #endif // CONTENT_RENDERER_MEDIA_LOCAL_VIDEO_CAPTURE_H_ | 78 #endif // CONTENT_RENDERER_MEDIA_LOCAL_VIDEO_CAPTURE_H_ |
| OLD | NEW |