| 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/chromoting_host_context.h" | 9 #include "remoting/host/chromoting_host_context.h" |
| 10 #include "remoting/host/client_session.h" | 10 #include "remoting/host/client_session.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 namespace remoting { | 24 namespace remoting { |
| 25 | 25 |
| 26 class MockDesktopEnvironment : public DesktopEnvironment { | 26 class MockDesktopEnvironment : public DesktopEnvironment { |
| 27 public: | 27 public: |
| 28 MockDesktopEnvironment(); | 28 MockDesktopEnvironment(); |
| 29 virtual ~MockDesktopEnvironment(); | 29 virtual ~MockDesktopEnvironment(); |
| 30 | 30 |
| 31 MOCK_METHOD0(CreateAudioCapturerPtr, AudioCapturer*()); | 31 MOCK_METHOD0(CreateAudioCapturerPtr, AudioCapturer*()); |
| 32 MOCK_METHOD0(CreateInputInjectorPtr, InputInjector*()); | 32 MOCK_METHOD0(CreateInputInjectorPtr, InputInjector*()); |
| 33 MOCK_METHOD0(CreateScreenControlsPtr, ScreenControls*()); | 33 MOCK_METHOD0(CreateScreenControlsPtr, ScreenControls*()); |
| 34 MOCK_METHOD0(CreateVideoCapturerPtr, media::ScreenCapturer*()); | 34 MOCK_METHOD0(CreateVideoCapturerPtr, webrtc::ScreenCapturer*()); |
| 35 MOCK_CONST_METHOD0(GetCapabilities, std::string()); | 35 MOCK_CONST_METHOD0(GetCapabilities, std::string()); |
| 36 MOCK_METHOD1(SetCapabilities, void(const std::string&)); | 36 MOCK_METHOD1(SetCapabilities, void(const std::string&)); |
| 37 | 37 |
| 38 // DesktopEnvironment implementation. | 38 // DesktopEnvironment implementation. |
| 39 virtual scoped_ptr<AudioCapturer> CreateAudioCapturer() OVERRIDE; | 39 virtual scoped_ptr<AudioCapturer> CreateAudioCapturer() OVERRIDE; |
| 40 virtual scoped_ptr<InputInjector> CreateInputInjector() OVERRIDE; | 40 virtual scoped_ptr<InputInjector> CreateInputInjector() OVERRIDE; |
| 41 virtual scoped_ptr<ScreenControls> CreateScreenControls() OVERRIDE; | 41 virtual scoped_ptr<ScreenControls> CreateScreenControls() OVERRIDE; |
| 42 virtual scoped_ptr<media::ScreenCapturer> CreateVideoCapturer() OVERRIDE; | 42 virtual scoped_ptr<webrtc::ScreenCapturer> CreateVideoCapturer() OVERRIDE; |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 class MockClientSessionControl : public ClientSessionControl { | 45 class MockClientSessionControl : public ClientSessionControl { |
| 46 public: | 46 public: |
| 47 MockClientSessionControl(); | 47 MockClientSessionControl(); |
| 48 virtual ~MockClientSessionControl(); | 48 virtual ~MockClientSessionControl(); |
| 49 | 49 |
| 50 MOCK_CONST_METHOD0(client_jid, const std::string&()); | 50 MOCK_CONST_METHOD0(client_jid, const std::string&()); |
| 51 MOCK_METHOD0(DisconnectSession, void()); | 51 MOCK_METHOD0(DisconnectSession, void()); |
| 52 MOCK_METHOD1(OnLocalMouseMoved, void(const SkIPoint&)); | 52 MOCK_METHOD1(OnLocalMouseMoved, void(const SkIPoint&)); |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 void(const std::string& jid, | 122 void(const std::string& jid, |
| 123 const std::string& channel_name, | 123 const std::string& channel_name, |
| 124 const protocol::TransportRoute& route)); | 124 const protocol::TransportRoute& route)); |
| 125 MOCK_METHOD1(OnStart, void(const std::string& xmpp_login)); | 125 MOCK_METHOD1(OnStart, void(const std::string& xmpp_login)); |
| 126 MOCK_METHOD0(OnShutdown, void()); | 126 MOCK_METHOD0(OnShutdown, void()); |
| 127 }; | 127 }; |
| 128 | 128 |
| 129 } // namespace remoting | 129 } // namespace remoting |
| 130 | 130 |
| 131 #endif // REMOTING_HOST_HOST_MOCK_OBJECTS_H_ | 131 #endif // REMOTING_HOST_HOST_MOCK_OBJECTS_H_ |
| OLD | NEW |