| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "remoting/protocol/protocol_mock_objects.h" | 5 #include "remoting/protocol/protocol_mock_objects.h" |
| 6 | 6 |
| 7 #include "base/message_loop_proxy.h" | 7 #include "base/message_loop_proxy.h" |
| 8 #include "net/base/ip_endpoint.h" | 8 #include "net/base/ip_endpoint.h" |
| 9 #include "remoting/protocol/transport.h" |
| 9 | 10 |
| 10 namespace remoting { | 11 namespace remoting { |
| 11 namespace protocol { | 12 namespace protocol { |
| 12 | 13 |
| 13 MockConnectionToClient::MockConnectionToClient( | 14 MockConnectionToClient::MockConnectionToClient( |
| 14 Session* session, | 15 Session* session, |
| 15 HostStub* host_stub, | 16 HostStub* host_stub, |
| 16 InputStub* input_stub) | 17 InputStub* input_stub) |
| 17 : ConnectionToClient(session) { | 18 : ConnectionToClient(session) { |
| 18 set_host_stub(host_stub); | 19 set_host_stub(host_stub); |
| (...skipping 29 matching lines...) Expand all Loading... |
| 48 MockVideoStub::MockVideoStub() {} | 49 MockVideoStub::MockVideoStub() {} |
| 49 | 50 |
| 50 MockVideoStub::~MockVideoStub() {} | 51 MockVideoStub::~MockVideoStub() {} |
| 51 | 52 |
| 52 MockSession::MockSession() {} | 53 MockSession::MockSession() {} |
| 53 | 54 |
| 54 MockSession::~MockSession() {} | 55 MockSession::~MockSession() {} |
| 55 | 56 |
| 56 } // namespace protocol | 57 } // namespace protocol |
| 57 } // namespace remoting | 58 } // namespace remoting |
| OLD | NEW |