| 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/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 #include "remoting/protocol/transport.h" |
| 10 | 10 |
| 11 namespace remoting { | 11 namespace remoting { |
| 12 namespace protocol { | 12 namespace protocol { |
| 13 | 13 |
| 14 MockConnectionToClient::MockConnectionToClient( | 14 MockConnectionToClient::MockConnectionToClient( |
| 15 Session* session, | 15 Session* session, |
| 16 HostStub* host_stub) | 16 HostStub* host_stub) |
| 17 : ConnectionToClient(session) { | 17 : ConnectionToClient(session) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 47 MockSession::MockSession() {} | 47 MockSession::MockSession() {} |
| 48 | 48 |
| 49 MockSession::~MockSession() {} | 49 MockSession::~MockSession() {} |
| 50 | 50 |
| 51 MockSessionManager::MockSessionManager() {} | 51 MockSessionManager::MockSessionManager() {} |
| 52 | 52 |
| 53 MockSessionManager::~MockSessionManager() {} | 53 MockSessionManager::~MockSessionManager() {} |
| 54 | 54 |
| 55 } // namespace protocol | 55 } // namespace protocol |
| 56 } // namespace remoting | 56 } // namespace remoting |
| OLD | NEW |