Chromium Code Reviews| Index: remoting/protocol/connection_unittest.cc |
| diff --git a/remoting/protocol/connection_unittest.cc b/remoting/protocol/connection_unittest.cc |
| index fc063183273b2b0af4515cf87926cffe7820d3db..1217aea7b3673ad11c6a521940ccbc90c54372b8 100644 |
| --- a/remoting/protocol/connection_unittest.cc |
| +++ b/remoting/protocol/connection_unittest.cc |
| @@ -94,6 +94,14 @@ class TestScreenCapturer : public webrtc::DesktopCapturer { |
| std::move(frame)); |
| } |
| + bool GetSourceList(SourceList* sources) override { |
| + return true; |
|
Sergey Ulanov
2016/11/05 00:16:26
Need to put something in sources if you return suc
Hzj_jie
2016/11/06 04:27:24
Done.
|
| + } |
| + |
| + bool SelectSource(SourceId id) override { |
| + return true; |
| + } |
| + |
| private: |
| Callback* callback_ = nullptr; |
| bool first_frame_sent_ = false; |