| Index: remoting/host/host_mock_objects.h
|
| diff --git a/remoting/host/host_mock_objects.h b/remoting/host/host_mock_objects.h
|
| index 06134991c6bd86436cc7ffb1a0ed6279380fd14b..1640d194c9bb0a36256d7fafd719c6bbb08dd4c9 100644
|
| --- a/remoting/host/host_mock_objects.h
|
| +++ b/remoting/host/host_mock_objects.h
|
| @@ -5,7 +5,6 @@
|
| #ifndef REMOTING_HOST_HOST_MOCK_OBJECTS_H_
|
| #define REMOTING_HOST_HOST_MOCK_OBJECTS_H_
|
|
|
| -#include "remoting/host/access_verifier.h"
|
| #include "remoting/host/capturer.h"
|
| #include "remoting/host/curtain.h"
|
| #include "remoting/host/chromoting_host_context.h"
|
| @@ -97,6 +96,7 @@ class MockClientSessionEventHandler : public ClientSession::EventHandler {
|
| virtual ~MockClientSessionEventHandler();
|
|
|
| MOCK_METHOD1(OnSessionAuthenticated, void(ClientSession* client));
|
| + MOCK_METHOD1(OnSessionAuthenticationFailed, void(ClientSession* client));
|
| MOCK_METHOD1(OnSessionClosed, void(ClientSession* client));
|
| MOCK_METHOD1(OnSessionFailed, void(ClientSession* client));
|
| MOCK_METHOD2(OnSessionSequenceNumber, void(ClientSession* client,
|
| @@ -129,18 +129,6 @@ class MockUserAuthenticator : public UserAuthenticator {
|
| DISALLOW_COPY_AND_ASSIGN(MockUserAuthenticator);
|
| };
|
|
|
| -class MockAccessVerifier : public AccessVerifier {
|
| - public:
|
| - MockAccessVerifier();
|
| - virtual ~MockAccessVerifier();
|
| -
|
| - MOCK_METHOD2(VerifyPermissions, bool(const std::string& client_jid,
|
| - const std::string& token));
|
| -
|
| - private:
|
| - DISALLOW_COPY_AND_ASSIGN(MockAccessVerifier);
|
| -};
|
| -
|
| } // namespace remoting
|
|
|
| #endif // REMOTING_HOST_HOST_MOCK_OBJECTS_H_
|
|
|