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

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

Issue 151163002: Revert 248045 "Use webrtc::MouseCursorMonitor for cursor shapes" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 10 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
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 21 matching lines...) Expand all
32 32
33 scoped_ptr<ScreenControls> MockDesktopEnvironment::CreateScreenControls() { 33 scoped_ptr<ScreenControls> MockDesktopEnvironment::CreateScreenControls() {
34 return scoped_ptr<ScreenControls>(CreateScreenControlsPtr()); 34 return scoped_ptr<ScreenControls>(CreateScreenControlsPtr());
35 } 35 }
36 36
37 scoped_ptr<webrtc::ScreenCapturer> 37 scoped_ptr<webrtc::ScreenCapturer>
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<webrtc::MouseCursorMonitor>
43 MockDesktopEnvironment::CreateMouseCursorMonitor() {
44 return scoped_ptr<webrtc::MouseCursorMonitor>(CreateMouseCursorMonitorPtr());
45 }
46
47 MockDesktopEnvironmentFactory::MockDesktopEnvironmentFactory() {} 42 MockDesktopEnvironmentFactory::MockDesktopEnvironmentFactory() {}
48 43
49 MockDesktopEnvironmentFactory::~MockDesktopEnvironmentFactory() {} 44 MockDesktopEnvironmentFactory::~MockDesktopEnvironmentFactory() {}
50 45
51 scoped_ptr<DesktopEnvironment> MockDesktopEnvironmentFactory::Create( 46 scoped_ptr<DesktopEnvironment> MockDesktopEnvironmentFactory::Create(
52 base::WeakPtr<ClientSessionControl> client_session_control) { 47 base::WeakPtr<ClientSessionControl> client_session_control) {
53 return scoped_ptr<DesktopEnvironment>(CreatePtr()); 48 return scoped_ptr<DesktopEnvironment>(CreatePtr());
54 } 49 }
55 50
56 MockInputInjector::MockInputInjector() {} 51 MockInputInjector::MockInputInjector() {}
(...skipping 10 matching lines...) Expand all
67 MockClientSessionControl::~MockClientSessionControl() {} 62 MockClientSessionControl::~MockClientSessionControl() {}
68 63
69 MockClientSessionEventHandler::MockClientSessionEventHandler() {} 64 MockClientSessionEventHandler::MockClientSessionEventHandler() {}
70 65
71 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} 66 MockClientSessionEventHandler::~MockClientSessionEventHandler() {}
72 67
73 MockHostStatusObserver::MockHostStatusObserver() {} 68 MockHostStatusObserver::MockHostStatusObserver() {}
74 69
75 MockHostStatusObserver::~MockHostStatusObserver() {} 70 MockHostStatusObserver::~MockHostStatusObserver() {}
76 71
77 MockMouseCursorMonitor::MockMouseCursorMonitor() {}
78
79 MockMouseCursorMonitor::~MockMouseCursorMonitor() {}
80
81 } // namespace remoting 72 } // namespace remoting
OLDNEW
« no previous file with comments | « trunk/src/remoting/host/host_mock_objects.h ('k') | trunk/src/remoting/host/ipc_desktop_environment.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698