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

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

Issue 92473002: Use webrtc::MouseCursorMonitor for cursor shapes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix linux build Created 6 years, 4 months 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/host_mock_objects.h ('k') | remoting/host/ipc_desktop_environment.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 #include "remoting/host/host_mock_objects.h" 5 #include "remoting/host/host_mock_objects.h"
6 6
7 #include "base/message_loop/message_loop_proxy.h" 7 #include "base/message_loop/message_loop_proxy.h"
8 #include "base/single_thread_task_runner.h" 8 #include "base/single_thread_task_runner.h"
9 #include "net/base/ip_endpoint.h" 9 #include "net/base/ip_endpoint.h"
10 #include "remoting/base/auto_thread_task_runner.h" 10 #include "remoting/base/auto_thread_task_runner.h"
(...skipping 27 matching lines...) Expand all
38 MockDesktopEnvironment::CreateVideoCapturer() { 38 MockDesktopEnvironment::CreateVideoCapturer() {
39 return scoped_ptr<webrtc::ScreenCapturer>(CreateVideoCapturerPtr()); 39 return scoped_ptr<webrtc::ScreenCapturer>(CreateVideoCapturerPtr());
40 } 40 }
41 41
42 scoped_ptr<GnubbyAuthHandler> 42 scoped_ptr<GnubbyAuthHandler>
43 MockDesktopEnvironment::CreateGnubbyAuthHandler( 43 MockDesktopEnvironment::CreateGnubbyAuthHandler(
44 protocol::ClientStub* client_stub) { 44 protocol::ClientStub* client_stub) {
45 return scoped_ptr<GnubbyAuthHandler>(CreateGnubbyAuthHandlerPtr(client_stub)); 45 return scoped_ptr<GnubbyAuthHandler>(CreateGnubbyAuthHandlerPtr(client_stub));
46 } 46 }
47 47
48 scoped_ptr<webrtc::MouseCursorMonitor>
49 MockDesktopEnvironment::CreateMouseCursorMonitor() {
50 return scoped_ptr<webrtc::MouseCursorMonitor>(CreateMouseCursorMonitorPtr());
51 }
52
48 MockDesktopEnvironmentFactory::MockDesktopEnvironmentFactory() {} 53 MockDesktopEnvironmentFactory::MockDesktopEnvironmentFactory() {}
49 54
50 MockDesktopEnvironmentFactory::~MockDesktopEnvironmentFactory() {} 55 MockDesktopEnvironmentFactory::~MockDesktopEnvironmentFactory() {}
51 56
52 scoped_ptr<DesktopEnvironment> MockDesktopEnvironmentFactory::Create( 57 scoped_ptr<DesktopEnvironment> MockDesktopEnvironmentFactory::Create(
53 base::WeakPtr<ClientSessionControl> client_session_control) { 58 base::WeakPtr<ClientSessionControl> client_session_control) {
54 return scoped_ptr<DesktopEnvironment>(CreatePtr()); 59 return scoped_ptr<DesktopEnvironment>(CreatePtr());
55 } 60 }
56 61
57 MockInputInjector::MockInputInjector() {} 62 MockInputInjector::MockInputInjector() {}
(...skipping 14 matching lines...) Expand all
72 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} 77 MockClientSessionEventHandler::~MockClientSessionEventHandler() {}
73 78
74 MockHostStatusObserver::MockHostStatusObserver() {} 79 MockHostStatusObserver::MockHostStatusObserver() {}
75 80
76 MockHostStatusObserver::~MockHostStatusObserver() {} 81 MockHostStatusObserver::~MockHostStatusObserver() {}
77 82
78 MockGnubbyAuthHandler::MockGnubbyAuthHandler() {} 83 MockGnubbyAuthHandler::MockGnubbyAuthHandler() {}
79 84
80 MockGnubbyAuthHandler::~MockGnubbyAuthHandler() {} 85 MockGnubbyAuthHandler::~MockGnubbyAuthHandler() {}
81 86
87 MockMouseCursorMonitor::MockMouseCursorMonitor() {}
88
89 MockMouseCursorMonitor::~MockMouseCursorMonitor() {}
90
82 } // namespace remoting 91 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/host_mock_objects.h ('k') | remoting/host/ipc_desktop_environment.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698