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/host/host_mock_objects.h" | 5 #include "remoting/host/host_mock_objects.h" |
6 | 6 |
7 #include "base/message_loop/message_loop_proxy.h" | 7 #include "base/message_loop/message_loop_proxy.h" |
8 #include "base/single_thread_task_runner.h" | 8 #include "base/single_thread_task_runner.h" |
9 #include "net/base/ip_endpoint.h" | 9 #include "net/base/ip_endpoint.h" |
10 #include "remoting/base/auto_thread_task_runner.h" | 10 #include "remoting/base/auto_thread_task_runner.h" |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 MockClientSessionControl::~MockClientSessionControl() {} | 62 MockClientSessionControl::~MockClientSessionControl() {} |
63 | 63 |
64 MockClientSessionEventHandler::MockClientSessionEventHandler() {} | 64 MockClientSessionEventHandler::MockClientSessionEventHandler() {} |
65 | 65 |
66 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} | 66 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} |
67 | 67 |
68 MockHostStatusObserver::MockHostStatusObserver() {} | 68 MockHostStatusObserver::MockHostStatusObserver() {} |
69 | 69 |
70 MockHostStatusObserver::~MockHostStatusObserver() {} | 70 MockHostStatusObserver::~MockHostStatusObserver() {} |
71 | 71 |
| 72 MockGnubbyAuthHandler::MockGnubbyAuthHandler( |
| 73 GnubbyConnectionFactory* gnubby_connection_factory, |
| 74 protocol::ClientStub* client_stub) |
| 75 : GnubbyAuthHandler(gnubby_connection_factory, |
| 76 client_stub) {} |
| 77 |
| 78 MockGnubbyAuthHandler::~MockGnubbyAuthHandler() {} |
| 79 |
| 80 MockGnubbyConnection::MockGnubbyConnection( |
| 81 GnubbyAuthHandler* auth_handler, |
| 82 int connection_id, |
| 83 net::StreamSocket* socket) |
| 84 : GnubbyConnection(auth_handler, |
| 85 connection_id, |
| 86 socket) {} |
| 87 |
| 88 MockGnubbyConnection::~MockGnubbyConnection() {} |
| 89 |
| 90 MockGnubbyConnectionFactory::MockGnubbyConnectionFactory() {} |
| 91 |
| 92 MockGnubbyConnectionFactory::~MockGnubbyConnectionFactory() {} |
| 93 |
72 } // namespace remoting | 94 } // namespace remoting |
OLD | NEW |