OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "remoting/host/access_verifier.h" | 8 #include "remoting/host/access_verifier.h" |
9 #include "remoting/host/capturer.h" | 9 #include "remoting/host/capturer.h" |
10 #include "remoting/host/curtain.h" | 10 #include "remoting/host/curtain.h" |
11 #include "remoting/host/chromoting_host_context.h" | 11 #include "remoting/host/chromoting_host_context.h" |
12 #include "remoting/host/client_session.h" | 12 #include "remoting/host/client_session.h" |
13 #include "remoting/host/continue_window.h" | 13 #include "remoting/host/continue_window.h" |
14 #include "remoting/host/disconnect_window.h" | 14 #include "remoting/host/disconnect_window.h" |
15 #include "remoting/host/event_executor.h" | 15 #include "remoting/host/event_executor.h" |
16 #include "remoting/host/local_input_monitor.h" | 16 #include "remoting/host/local_input_monitor.h" |
17 #include "remoting/host/user_authenticator.h" | 17 #include "remoting/host/user_authenticator.h" |
18 #include "testing/gmock/include/gmock/gmock.h" | 18 #include "testing/gmock/include/gmock/gmock.h" |
19 | 19 |
20 namespace remoting { | 20 namespace remoting { |
21 | 21 |
22 class MockCapturer : public Capturer { | 22 class MockCapturer : public Capturer { |
23 public: | 23 public: |
24 MockCapturer(); | 24 MockCapturer(); |
25 virtual ~MockCapturer(); | 25 virtual ~MockCapturer(); |
26 | 26 |
27 MOCK_METHOD0(ScreenConfigurationChanged, void()); | 27 MOCK_METHOD0(ScreenConfigurationChanged, void()); |
28 MOCK_CONST_METHOD0(pixel_format, media::VideoFrame::Format()); | 28 MOCK_CONST_METHOD0(pixel_format, media::VideoFrame::Format()); |
29 MOCK_METHOD0(ClearInvalidRects, void()); | 29 MOCK_METHOD0(ClearInvalidRegion, void()); |
30 MOCK_METHOD1(InvalidateRects, void(const InvalidRects& inval_rects)); | 30 MOCK_METHOD1(InvalidateRegion, void(const SkRegion& inval_region)); |
31 MOCK_METHOD1(InvalidateScreen, void(const gfx::Size&)); | 31 MOCK_METHOD1(InvalidateScreen, void(const gfx::Size&)); |
32 MOCK_METHOD0(InvalidateFullScreen, void()); | 32 MOCK_METHOD0(InvalidateFullScreen, void()); |
33 MOCK_METHOD1(CaptureInvalidRects, void(CaptureCompletedCallback* callback)); | 33 MOCK_METHOD1(CaptureInvalidRegion, void(CaptureCompletedCallback* callback)); |
34 MOCK_CONST_METHOD0(size_most_recent, const gfx::Size&()); | 34 MOCK_CONST_METHOD0(size_most_recent, const gfx::Size&()); |
35 | 35 |
36 private: | 36 private: |
37 DISALLOW_COPY_AND_ASSIGN(MockCapturer); | 37 DISALLOW_COPY_AND_ASSIGN(MockCapturer); |
38 }; | 38 }; |
39 | 39 |
40 class MockCurtain : public Curtain { | 40 class MockCurtain : public Curtain { |
41 public: | 41 public: |
42 MockCurtain(); | 42 MockCurtain(); |
43 virtual ~MockCurtain(); | 43 virtual ~MockCurtain(); |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 MOCK_METHOD2(VerifyPermissions, bool(const std::string& client_jid, | 138 MOCK_METHOD2(VerifyPermissions, bool(const std::string& client_jid, |
139 const std::string& token)); | 139 const std::string& token)); |
140 | 140 |
141 private: | 141 private: |
142 DISALLOW_COPY_AND_ASSIGN(MockAccessVerifier); | 142 DISALLOW_COPY_AND_ASSIGN(MockAccessVerifier); |
143 }; | 143 }; |
144 | 144 |
145 } // namespace remoting | 145 } // namespace remoting |
146 | 146 |
147 #endif // REMOTING_HOST_HOST_MOCK_OBJECTS_H_ | 147 #endif // REMOTING_HOST_HOST_MOCK_OBJECTS_H_ |
OLD | NEW |