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

Unified Diff: remoting/host/client_session_unittest.cc

Issue 11363128: Converted VideoFrameCapturer callbacks into a VideoFrameCapturer::Delegate interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More Mac compilation issues. Created 8 years, 1 month 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 | « no previous file | remoting/host/host_mock_objects.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/client_session_unittest.cc
diff --git a/remoting/host/client_session_unittest.cc b/remoting/host/client_session_unittest.cc
index 0a7cf487f4f1192894ed85c612b9cc6fb18bcd27..1d32056c5e258bbbfb0c13e75961eee79802a6b8 100644
--- a/remoting/host/client_session_unittest.cc
+++ b/remoting/host/client_session_unittest.cc
@@ -101,7 +101,7 @@ class ClientSessionTest : public testing::Test {
EXPECT_CALL(*capturer, Start(_));
EXPECT_CALL(*capturer, Stop());
EXPECT_CALL(*capturer, InvalidateRegion(_)).Times(AnyNumber());
- EXPECT_CALL(*capturer, CaptureInvalidRegion(_)).Times(AnyNumber());
+ EXPECT_CALL(*capturer, CaptureInvalidRegion()).Times(AnyNumber());
EXPECT_CALL(*capturer, size_most_recent())
.WillRepeatedly(ReturnRef(screen_size_));
« no previous file with comments | « no previous file | remoting/host/host_mock_objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698