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 #ifndef REMOTING_HOST_HOST_MOCK_OBJECTS_H_ | 5 #ifndef REMOTING_HOST_HOST_MOCK_OBJECTS_H_ |
6 #define REMOTING_HOST_HOST_MOCK_OBJECTS_H_ | 6 #define REMOTING_HOST_HOST_MOCK_OBJECTS_H_ |
7 | 7 |
8 #include "net/base/ip_endpoint.h" | 8 #include "net/base/ip_endpoint.h" |
9 #include "remoting/host/video_frame_capturer.h" | 9 #include "remoting/host/video_frame_capturer.h" |
10 #include "remoting/host/chromoting_host_context.h" | 10 #include "remoting/host/chromoting_host_context.h" |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 | 119 |
120 class MockEventExecutor : public EventExecutor { | 120 class MockEventExecutor : public EventExecutor { |
121 public: | 121 public: |
122 MockEventExecutor(); | 122 MockEventExecutor(); |
123 virtual ~MockEventExecutor(); | 123 virtual ~MockEventExecutor(); |
124 | 124 |
125 MOCK_METHOD1(InjectClipboardEvent, | 125 MOCK_METHOD1(InjectClipboardEvent, |
126 void(const protocol::ClipboardEvent& event)); | 126 void(const protocol::ClipboardEvent& event)); |
127 MOCK_METHOD1(InjectKeyEvent, void(const protocol::KeyEvent& event)); | 127 MOCK_METHOD1(InjectKeyEvent, void(const protocol::KeyEvent& event)); |
128 MOCK_METHOD1(InjectMouseEvent, void(const protocol::MouseEvent& event)); | 128 MOCK_METHOD1(InjectMouseEvent, void(const protocol::MouseEvent& event)); |
129 MOCK_METHOD1(StartPtr, | 129 MOCK_METHOD1(OnSessionStartedPtr, |
130 void(protocol::ClipboardStub* client_clipboard)); | 130 void(protocol::ClipboardStub* client_clipboard)); |
131 MOCK_METHOD0(StopAndDeleteMock, void()); | 131 MOCK_METHOD0(OnSessionFinished, void()); |
132 | 132 |
133 void Start(scoped_ptr<protocol::ClipboardStub> client_clipboard); | 133 void OnSessionStarted(scoped_ptr<protocol::ClipboardStub> client_clipboard); |
134 void StopAndDelete(); | |
135 | 134 |
136 private: | 135 private: |
137 DISALLOW_COPY_AND_ASSIGN(MockEventExecutor); | 136 DISALLOW_COPY_AND_ASSIGN(MockEventExecutor); |
138 }; | 137 }; |
139 | 138 |
140 class MockHostStatusObserver : public HostStatusObserver { | 139 class MockHostStatusObserver : public HostStatusObserver { |
141 public: | 140 public: |
142 MockHostStatusObserver(); | 141 MockHostStatusObserver(); |
143 virtual ~MockHostStatusObserver(); | 142 virtual ~MockHostStatusObserver(); |
144 | 143 |
(...skipping 17 matching lines...) Expand all Loading... |
162 MOCK_METHOD2(Authenticate, bool(const std::string& username, | 161 MOCK_METHOD2(Authenticate, bool(const std::string& username, |
163 const std::string& password)); | 162 const std::string& password)); |
164 | 163 |
165 private: | 164 private: |
166 DISALLOW_COPY_AND_ASSIGN(MockUserAuthenticator); | 165 DISALLOW_COPY_AND_ASSIGN(MockUserAuthenticator); |
167 }; | 166 }; |
168 | 167 |
169 } // namespace remoting | 168 } // namespace remoting |
170 | 169 |
171 #endif // REMOTING_HOST_HOST_MOCK_OBJECTS_H_ | 170 #endif // REMOTING_HOST_HOST_MOCK_OBJECTS_H_ |
OLD | NEW |