| Index: remoting/test/test_chromoting_client.h
|
| diff --git a/remoting/test/test_chromoting_client.h b/remoting/test/test_chromoting_client.h
|
| index 15c5db1388c222413deb220383a3c196ffad766d..33e69f604ffa1ebec49602f1b1547a3deb5e68fe 100644
|
| --- a/remoting/test/test_chromoting_client.h
|
| +++ b/remoting/test/test_chromoting_client.h
|
| @@ -21,12 +21,12 @@ namespace remoting {
|
|
|
| class ClientContext;
|
| class XmppSignalStrategy;
|
| -class VideoRenderer;
|
|
|
| namespace protocol {
|
| class ClipboardStub;
|
| class HostStub;
|
| class InputStub;
|
| +class VideoRenderer;
|
| } // namespace protocol
|
|
|
| namespace test {
|
| @@ -44,7 +44,8 @@ class TestChromotingClient : public ClientUserInterface,
|
| public protocol::CursorShapeStub {
|
| public:
|
| TestChromotingClient();
|
| - explicit TestChromotingClient(scoped_ptr<VideoRenderer> video_renderer);
|
| + explicit TestChromotingClient(
|
| + scoped_ptr<protocol::VideoRenderer> video_renderer);
|
| ~TestChromotingClient() override;
|
|
|
| // Starts a Chromoting connection using the specified connection setup info.
|
| @@ -114,7 +115,7 @@ class TestChromotingClient : public ClientUserInterface,
|
| scoped_ptr<ClientContext> client_context_;
|
|
|
| // Processes video packets from the host.
|
| - scoped_ptr<VideoRenderer> video_renderer_;
|
| + scoped_ptr<protocol::VideoRenderer> video_renderer_;
|
|
|
| // SignalStrategy used for connection signaling.
|
| scoped_ptr<SignalStrategy> signal_strategy_;
|
|
|