Chromium Code Reviews| Index: content/browser/renderer_host/media/video_capture_host.h |
| =================================================================== |
| --- content/browser/renderer_host/media/video_capture_host.h (revision 138673) |
| +++ content/browser/renderer_host/media/video_capture_host.h (working copy) |
| @@ -78,6 +78,7 @@ |
| int width, |
| int height, |
| int frame_per_second) OVERRIDE; |
| + virtual void OnPaused(const VideoCaptureControllerID& id) OVERRIDE; |
| virtual void OnReadyToDelete(const VideoCaptureControllerID& id) OVERRIDE; |
| private: |
| @@ -137,6 +138,8 @@ |
| // Handle error coming from VideoCaptureDevice. |
| void DoHandleError(int device_id); |
| + void DoPaused(int device_id); |
|
mflodman_chromium_OOO
2012/05/29 09:11:03
Do we want a comment it should be called on IO-thr
wjia(left Chromium)
2012/05/29 16:59:14
All Do* functions have been renamed to DO*OnIOThre
mflodman_chromium_OOO
2012/05/29 18:19:54
Nice!
|
| + |
| // Helpers. |
| media_stream::VideoCaptureManager* GetVideoCaptureManager(); |