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/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/network_settings.h" | |
Wez
2012/06/12 21:20:10
Do you still need this include?
simonmorris
2012/06/13 16:26:33
Done.
| |
17 #include "remoting/host/user_authenticator.h" | 18 #include "remoting/host/user_authenticator.h" |
18 #include "testing/gmock/include/gmock/gmock.h" | 19 #include "testing/gmock/include/gmock/gmock.h" |
19 | 20 |
20 namespace remoting { | 21 namespace remoting { |
21 | 22 |
22 class MockCapturer : public Capturer { | 23 class MockCapturer : public Capturer { |
23 public: | 24 public: |
24 MockCapturer(); | 25 MockCapturer(); |
25 virtual ~MockCapturer(); | 26 virtual ~MockCapturer(); |
26 | 27 |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
143 MOCK_METHOD2(Authenticate, bool(const std::string& username, | 144 MOCK_METHOD2(Authenticate, bool(const std::string& username, |
144 const std::string& password)); | 145 const std::string& password)); |
145 | 146 |
146 private: | 147 private: |
147 DISALLOW_COPY_AND_ASSIGN(MockUserAuthenticator); | 148 DISALLOW_COPY_AND_ASSIGN(MockUserAuthenticator); |
148 }; | 149 }; |
149 | 150 |
150 } // namespace remoting | 151 } // namespace remoting |
151 | 152 |
152 #endif // REMOTING_HOST_HOST_MOCK_OBJECTS_H_ | 153 #endif // REMOTING_HOST_HOST_MOCK_OBJECTS_H_ |
OLD | NEW |