| Index: remoting/protocol/webrtc_dummy_video_capturer.cc
|
| diff --git a/remoting/protocol/webrtc_dummy_video_capturer.cc b/remoting/protocol/webrtc_dummy_video_capturer.cc
|
| index ea7b9f75ff9c89d7460b5b78ac6c2c143d0ae7ce..c1d910472512839841da00e4015c4f03db6501e0 100644
|
| --- a/remoting/protocol/webrtc_dummy_video_capturer.cc
|
| +++ b/remoting/protocol/webrtc_dummy_video_capturer.cc
|
| @@ -4,25 +4,18 @@
|
|
|
| #include "remoting/protocol/webrtc_dummy_video_capturer.h"
|
|
|
| -#include <vector>
|
| -
|
| namespace remoting {
|
| namespace protocol {
|
|
|
| -WebrtcDummyVideoCapturer::WebrtcDummyVideoCapturer(
|
| - std::unique_ptr<WebrtcFrameScheduler> frame_scheduler)
|
| - : frame_scheduler_(std::move(frame_scheduler)) {}
|
| -
|
| +WebrtcDummyVideoCapturer::WebrtcDummyVideoCapturer() {}
|
| WebrtcDummyVideoCapturer::~WebrtcDummyVideoCapturer() {}
|
|
|
| cricket::CaptureState WebrtcDummyVideoCapturer::Start(
|
| const cricket::VideoFormat& capture_format) {
|
| - frame_scheduler_->Start();
|
| return cricket::CS_RUNNING;
|
| }
|
|
|
| void WebrtcDummyVideoCapturer::Stop() {
|
| - frame_scheduler_->Stop();
|
| SetCaptureState(cricket::CS_STOPPED);
|
| }
|
|
|
|
|