| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 | 9 |
| 9 namespace remoting { | 10 namespace remoting { |
| 10 namespace protocol { | 11 namespace protocol { |
| 11 | 12 |
| 12 MockConnectionToClient::MockConnectionToClient( | 13 MockConnectionToClient::MockConnectionToClient( |
| 13 Session* session, | 14 Session* session, |
| 14 HostStub* host_stub, | 15 HostStub* host_stub, |
| 15 InputStub* input_stub) | 16 InputStub* input_stub) |
| 16 : ConnectionToClient(session) { | 17 : ConnectionToClient(session) { |
| 17 set_host_stub(host_stub); | 18 set_host_stub(host_stub); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 39 MockVideoStub::MockVideoStub() {} | 40 MockVideoStub::MockVideoStub() {} |
| 40 | 41 |
| 41 MockVideoStub::~MockVideoStub() {} | 42 MockVideoStub::~MockVideoStub() {} |
| 42 | 43 |
| 43 MockSession::MockSession() {} | 44 MockSession::MockSession() {} |
| 44 | 45 |
| 45 MockSession::~MockSession() {} | 46 MockSession::~MockSession() {} |
| 46 | 47 |
| 47 } // namespace protocol | 48 } // namespace protocol |
| 48 } // namespace remoting | 49 } // namespace remoting |
| OLD | NEW |