| Index: remoting/host/host_mock_objects.cc
|
| diff --git a/remoting/host/host_mock_objects.cc b/remoting/host/host_mock_objects.cc
|
| index 4bdd064d24a155229e9f0cc0088c3c8640baf504..446251be3d095ff6805a390d535ce194d8da4b32 100644
|
| --- a/remoting/host/host_mock_objects.cc
|
| +++ b/remoting/host/host_mock_objects.cc
|
| @@ -69,4 +69,26 @@ MockHostStatusObserver::MockHostStatusObserver() {}
|
|
|
| MockHostStatusObserver::~MockHostStatusObserver() {}
|
|
|
| +MockGnubbyAuthHandler::MockGnubbyAuthHandler(
|
| + GnubbyConnectionFactory* gnubby_connection_factory,
|
| + protocol::ClientStub* client_stub)
|
| + : GnubbyAuthHandler(gnubby_connection_factory,
|
| + client_stub) {}
|
| +
|
| +MockGnubbyAuthHandler::~MockGnubbyAuthHandler() {}
|
| +
|
| +MockGnubbyConnection::MockGnubbyConnection(
|
| + GnubbyAuthHandler* auth_handler,
|
| + int connection_id,
|
| + net::StreamSocket* socket)
|
| + : GnubbyConnection(auth_handler,
|
| + connection_id,
|
| + socket) {}
|
| +
|
| +MockGnubbyConnection::~MockGnubbyConnection() {}
|
| +
|
| +MockGnubbyConnectionFactory::MockGnubbyConnectionFactory() {}
|
| +
|
| +MockGnubbyConnectionFactory::~MockGnubbyConnectionFactory() {}
|
| +
|
| } // namespace remoting
|
|
|