| Index: remoting/protocol/video_frame_pump_unittest.cc
|
| diff --git a/remoting/protocol/video_frame_pump_unittest.cc b/remoting/protocol/video_frame_pump_unittest.cc
|
| index 4c4c9a8ca30c954aed9dada18699646acd4e2eec..5b1e405974346cada00b4447f928f9dbd3edecac 100644
|
| --- a/remoting/protocol/video_frame_pump_unittest.cc
|
| +++ b/remoting/protocol/video_frame_pump_unittest.cc
|
| @@ -121,6 +121,16 @@ class ThreadCheckDesktopCapturer : public webrtc::DesktopCapturer {
|
| std::move(frame));
|
| }
|
|
|
| + bool GetSourceList(SourceList* sources) override {
|
| + EXPECT_TRUE(task_runner_->BelongsToCurrentThread());
|
| + return false;
|
| + }
|
| +
|
| + bool SelectSource(SourceId id) override {
|
| + EXPECT_TRUE(task_runner_->BelongsToCurrentThread());
|
| + return true;
|
| + }
|
| +
|
| private:
|
| scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
|
| webrtc::DesktopCapturer::Callback* callback_;
|
|
|