| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // VideoCaptureImpl represents a capture device in renderer process. It provides | 5 // VideoCaptureImpl represents a capture device in renderer process. It provides |
| 6 // interfaces for clients to Start/Stop capture. It also communicates to clients | 6 // interfaces for clients to Start/Stop capture. It also communicates to clients |
| 7 // when buffer is ready, state of capture device is changed. | 7 // when buffer is ready, state of capture device is changed. |
| 8 | 8 |
| 9 #ifndef CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_H_ | 9 #ifndef CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_H_ |
| 10 #define CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_H_ | 10 #define CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_H_ |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 103 |
| 104 // The information about the device sent from browser process side. | 104 // The information about the device sent from browser process side. |
| 105 media::VideoCaptureParams device_info_; | 105 media::VideoCaptureParams device_info_; |
| 106 bool device_info_available_; | 106 bool device_info_available_; |
| 107 | 107 |
| 108 video_capture::State state_; | 108 video_capture::State state_; |
| 109 | 109 |
| 110 DISALLOW_COPY_AND_ASSIGN(VideoCaptureImpl); | 110 DISALLOW_COPY_AND_ASSIGN(VideoCaptureImpl); |
| 111 }; | 111 }; |
| 112 | 112 |
| 113 DISABLE_RUNNABLE_METHOD_REFCOUNT(VideoCaptureImpl); | |
| 114 | |
| 115 #endif // CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_H_ | 113 #endif // CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_H_ |
| OLD | NEW |