| Index: remoting/test/protocol_perftest.cc
|
| diff --git a/remoting/test/protocol_perftest.cc b/remoting/test/protocol_perftest.cc
|
| index f5edd8fd73af10547ba1f816cb102c3282e6b050..d08b117fdb1b832d82afed2444d20885d2df528b 100644
|
| --- a/remoting/test/protocol_perftest.cc
|
| +++ b/remoting/test/protocol_perftest.cc
|
| @@ -75,6 +75,7 @@ class ProtocolPerfTest
|
| public testing::WithParamInterface<NetworkPerformanceParams>,
|
| public ClientUserInterface,
|
| public VideoRenderer,
|
| + public protocol::VideoStub,
|
| public HostStatusObserver {
|
| public:
|
| ProtocolPerfTest()
|
| @@ -119,6 +120,9 @@ class ProtocolPerfTest
|
| // VideoRenderer interface.
|
| void OnSessionConfig(const protocol::SessionConfig& config) override {}
|
| ChromotingStats* GetStats() override { return nullptr; }
|
| + protocol::VideoStub* GetVideoStub() override { return this; }
|
| +
|
| + // protocol::VideoStub interface.
|
| void ProcessVideoPacket(scoped_ptr<VideoPacket> video_packet,
|
| const base::Closure& done) override {
|
| if (video_packet->data().empty()) {
|
|
|