Index: media/capture/video/video_capture_device.h |
diff --git a/media/capture/video/video_capture_device.h b/media/capture/video/video_capture_device.h |
index a716db8665967b41a6af20cf42600324457ff978..e1855edf97262b677513a9ff074f0e9fd76e424c 100644 |
--- a/media/capture/video/video_capture_device.h |
+++ b/media/capture/video/video_capture_device.h |
@@ -214,6 +214,9 @@ class CAPTURE_EXPORT VideoCaptureDevice |
// Returns the current buffer pool utilization, in the range 0.0 (no buffers |
// are in use by producers or consumers) to 1.0 (all buffers are in use). |
virtual double GetBufferPoolUtilization() const = 0; |
+ |
+ // VideoCaptureDevice reports it's successfully started. |
miu
2017/02/09 22:21:49
There are two things you'll want to consider here:
chfremer
2017/02/09 23:34:52
Regardless of which exact thread it comes from, we
braveyao
2017/02/14 01:05:49
All the events will be posted to IO thread. See ht
braveyao
2017/02/14 01:05:49
All the methods will be posted to IO thread (https
chfremer
2017/02/14 19:21:22
Please see my follow-up comment in Patch Set 2.
|
+ virtual void OnStarted() = 0; |
}; |
~VideoCaptureDevice() override; |