| Index: services/video_capture/video_capture_device_proxy_impl.h
|
| diff --git a/services/video_capture/video_capture_device_proxy_impl.h b/services/video_capture/video_capture_device_proxy_impl.h
|
| index 8635af6359672bf91a249358cbc0fcb243d2b597..cbe0e3da42b5ec506874da56d4623906973e8aaa 100644
|
| --- a/services/video_capture/video_capture_device_proxy_impl.h
|
| +++ b/services/video_capture/video_capture_device_proxy_impl.h
|
| @@ -24,6 +24,8 @@ class VideoCaptureDeviceProxyImpl : public mojom::VideoCaptureDeviceProxy {
|
| mojom::PowerLineFrequency power_line_frequency,
|
| mojom::VideoCaptureDeviceClientPtr client) override;
|
|
|
| + void Stop();
|
| +
|
| // TODO(chfremer): Consider using Mojo type mapping instead of conversion
|
| // methods.
|
| // https://crbug.com/642387
|
| @@ -40,6 +42,7 @@ class VideoCaptureDeviceProxyImpl : public mojom::VideoCaptureDeviceProxy {
|
|
|
| private:
|
| std::unique_ptr<media::VideoCaptureDevice> device_;
|
| + bool device_running_ = false;
|
| };
|
|
|
| } // namespace video_capture
|
|
|