Index: remoting/host/screen_recorder_unittest.cc |
=================================================================== |
--- remoting/host/screen_recorder_unittest.cc (revision 155274) |
+++ remoting/host/screen_recorder_unittest.cc (working copy) |
@@ -100,7 +100,8 @@ |
EXPECT_CALL(*session_, SetEventHandler(_)); |
EXPECT_CALL(*session_, Close()) |
.Times(AnyNumber()); |
- connection_.reset(new MockConnectionToClient(session_, &host_stub_)); |
+ connection_.reset(new MockConnectionToClient( |
+ session_, &host_stub_, &event_executor_)); |
connection_->SetEventHandler(&handler_); |
record_ = new ScreenRecorder( |
@@ -121,6 +122,7 @@ |
MockConnectionToClientEventHandler handler_; |
MockHostStub host_stub_; |
+ MockEventExecutor event_executor_; |
MockSession* session_; // Owned by |connection_|. |
scoped_ptr<MockConnectionToClient> connection_; |