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

Unified Diff: remoting/host/screen_recorder_unittest.cc

Issue 6780014: Clean up remoting project (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a compile glitch on Windows Created 9 years, 9 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
Index: remoting/host/screen_recorder_unittest.cc
diff --git a/remoting/host/screen_recorder_unittest.cc b/remoting/host/screen_recorder_unittest.cc
index b5e8f8aa872f09f1951c240c5487eed444d06e6e..69650eeade5a77ddea31d47950511c12694dd85f 100644
--- a/remoting/host/screen_recorder_unittest.cc
+++ b/remoting/host/screen_recorder_unittest.cc
@@ -15,7 +15,6 @@
using ::remoting::protocol::MockConnectionToClient;
using ::remoting::protocol::MockConnectionToClientEventHandler;
using ::remoting::protocol::MockHostStub;
-using ::remoting::protocol::MockInputStub;
using ::remoting::protocol::MockVideoStub;
using ::testing::_;
@@ -82,7 +81,7 @@ class ScreenRecorderTest : public testing::Test {
encoder_ = new MockEncoder();
connection_ = new MockConnectionToClient(&message_loop_, &handler_,
- &host_stub_, &input_stub_);
+ &host_stub_, &event_executor_);
record_ = new ScreenRecorder(
&message_loop_, &message_loop_, &message_loop_,
@@ -94,7 +93,7 @@ class ScreenRecorderTest : public testing::Test {
MockConnectionToClientEventHandler handler_;
MockHostStub host_stub_;
- MockInputStub input_stub_;
+ MockEventExecutor event_executor_;
scoped_refptr<MockConnectionToClient> connection_;
// The following mock objects are owned by ScreenRecorder.

Powered by Google App Engine
This is Rietveld 408576698