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

Unified Diff: trunk/src/remoting/host/chromoting_host_unittest.cc

Issue 151163002: Revert 248045 "Use webrtc::MouseCursorMonitor for cursor shapes" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « trunk/src/remoting/host/basic_desktop_environment.cc ('k') | trunk/src/remoting/host/chromoting_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/remoting/host/chromoting_host_unittest.cc
===================================================================
--- trunk/src/remoting/host/chromoting_host_unittest.cc (revision 248137)
+++ trunk/src/remoting/host/chromoting_host_unittest.cc (working copy)
@@ -245,9 +245,6 @@
EXPECT_CALL(*desktop_environment, CreateVideoCapturerPtr())
.Times(AtMost(1))
.WillOnce(Invoke(this, &ChromotingHostTest::CreateVideoCapturer));
- EXPECT_CALL(*desktop_environment, CreateMouseCursorMonitorPtr())
- .Times(AtMost(1))
- .WillOnce(Invoke(this, &ChromotingHostTest::CreateMouseCursorMonitor));
EXPECT_CALL(*desktop_environment, GetCapabilities())
.Times(AtMost(1));
EXPECT_CALL(*desktop_environment, SetCapabilities(_))
@@ -270,12 +267,6 @@
return new ScreenCapturerFake();
}
- // Creates a MockMouseCursorMonitor, to mock
- // DesktopEnvironment::CreateMouseCursorMonitor().
- webrtc::MouseCursorMonitor* CreateMouseCursorMonitor() {
- return new MockMouseCursorMonitor();
- }
-
void DisconnectAllClients() {
host_->DisconnectAllClients();
}
« no previous file with comments | « trunk/src/remoting/host/basic_desktop_environment.cc ('k') | trunk/src/remoting/host/chromoting_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698