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 <cstdint> | 8 #include <cstdint> |
9 #include <memory> | 9 #include <memory> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "net/base/ip_endpoint.h" | 13 #include "net/base/ip_endpoint.h" |
14 #include "remoting/host/chromoting_host_context.h" | 14 #include "remoting/host/chromoting_host_context.h" |
15 #include "remoting/host/client_session.h" | 15 #include "remoting/host/client_session.h" |
16 #include "remoting/host/client_session_control.h" | 16 #include "remoting/host/client_session_control.h" |
17 #include "remoting/host/client_session_details.h" | 17 #include "remoting/host/client_session_details.h" |
18 #include "remoting/host/desktop_environment.h" | 18 #include "remoting/host/desktop_environment.h" |
19 #include "remoting/host/host_status_observer.h" | 19 #include "remoting/host/host_status_observer.h" |
20 #include "remoting/host/input_injector.h" | 20 #include "remoting/host/input_injector.h" |
21 #include "remoting/host/screen_controls.h" | 21 #include "remoting/host/screen_controls.h" |
22 #include "remoting/host/screen_resolution.h" | 22 #include "remoting/host/screen_resolution.h" |
23 #include "remoting/host/security_key/gnubby_auth_handler.h" | 23 #include "remoting/host/security_key/gnubby_auth_handler.h" |
24 #include "remoting/proto/control.pb.h" | 24 #include "remoting/proto/control.pb.h" |
| 25 #include "remoting/proto/event.pb.h" |
25 #include "testing/gmock/include/gmock/gmock.h" | 26 #include "testing/gmock/include/gmock/gmock.h" |
26 #include "third_party/webrtc/modules/desktop_capture/desktop_frame.h" | 27 #include "third_party/webrtc/modules/desktop_capture/desktop_frame.h" |
27 #include "third_party/webrtc/modules/desktop_capture/mouse_cursor_monitor.h" | 28 #include "third_party/webrtc/modules/desktop_capture/mouse_cursor_monitor.h" |
28 | 29 |
29 namespace base { | 30 namespace base { |
30 class TimeDelta; | 31 class TimeDelta; |
31 class SingleThreadTaskRunner; | 32 class SingleThreadTaskRunner; |
32 } // namespace base | 33 } // namespace base |
33 | 34 |
34 namespace remoting { | 35 namespace remoting { |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 MOCK_METHOD2(Init, void(Callback* callback, Mode mode)); | 186 MOCK_METHOD2(Init, void(Callback* callback, Mode mode)); |
186 MOCK_METHOD0(Capture, void()); | 187 MOCK_METHOD0(Capture, void()); |
187 | 188 |
188 private: | 189 private: |
189 DISALLOW_COPY_AND_ASSIGN(MockMouseCursorMonitor); | 190 DISALLOW_COPY_AND_ASSIGN(MockMouseCursorMonitor); |
190 }; | 191 }; |
191 | 192 |
192 } // namespace remoting | 193 } // namespace remoting |
193 | 194 |
194 #endif // REMOTING_HOST_HOST_MOCK_OBJECTS_H_ | 195 #endif // REMOTING_HOST_HOST_MOCK_OBJECTS_H_ |
OLD | NEW |