Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Side by Side Diff: remoting/host/host_mock_objects.h

Issue 112453002: Remove dependency on skia from remoting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/host/desktop_session_proxy.h ('k') | remoting/host/host_status_observer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 virtual scoped_ptr<webrtc::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 webrtc::DesktopVector&));
53 MOCK_METHOD1(SetDisableInputs, void(bool)); 53 MOCK_METHOD1(SetDisableInputs, void(bool));
54 54
55 private: 55 private:
56 DISALLOW_COPY_AND_ASSIGN(MockClientSessionControl); 56 DISALLOW_COPY_AND_ASSIGN(MockClientSessionControl);
57 }; 57 };
58 58
59 class MockClientSessionEventHandler : public ClientSession::EventHandler { 59 class MockClientSessionEventHandler : public ClientSession::EventHandler {
60 public: 60 public:
61 MockClientSessionEventHandler(); 61 MockClientSessionEventHandler();
62 virtual ~MockClientSessionEventHandler(); 62 virtual ~MockClientSessionEventHandler();
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW
« no previous file with comments | « remoting/host/desktop_session_proxy.h ('k') | remoting/host/host_status_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698