| Index: remoting/host/host_mock_objects.h
|
| diff --git a/remoting/host/host_mock_objects.h b/remoting/host/host_mock_objects.h
|
| index 5dbdd7ba43bd768e847f0c5b308a81c2ffc64e68..06134991c6bd86436cc7ffb1a0ed6279380fd14b 100644
|
| --- a/remoting/host/host_mock_objects.h
|
| +++ b/remoting/host/host_mock_objects.h
|
| @@ -96,9 +96,11 @@ class MockClientSessionEventHandler : public ClientSession::EventHandler {
|
| MockClientSessionEventHandler();
|
| virtual ~MockClientSessionEventHandler();
|
|
|
| - MOCK_METHOD1(OnAuthenticationComplete,
|
| - void(scoped_refptr<protocol::ConnectionToClient>));
|
| -
|
| + MOCK_METHOD1(OnSessionAuthenticated, void(ClientSession* client));
|
| + MOCK_METHOD1(OnSessionClosed, void(ClientSession* client));
|
| + MOCK_METHOD1(OnSessionFailed, void(ClientSession* client));
|
| + MOCK_METHOD2(OnSessionSequenceNumber, void(ClientSession* client,
|
| + int64 sequence_number));
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(MockClientSessionEventHandler);
|
| };
|
|
|