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

Unified Diff: remoting/host/screen_recorder_unittest.cc

Issue 10915206: [Chromoting] Refactoring DesktopEnvironment and moving screen/audio recorders to ClientSession. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased to enable try jobs. Created 8 years, 3 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 74a445ecf32791a35a5c1dc7c0124d6fbd5c79ad..194db96be204ff7dbf5fa27557ceb1ad56911390 100644
--- a/remoting/host/screen_recorder_unittest.cc
+++ b/remoting/host/screen_recorder_unittest.cc
@@ -100,8 +100,7 @@ class ScreenRecorderTest : public testing::Test {
EXPECT_CALL(*session_, SetEventHandler(_));
EXPECT_CALL(*session_, Close())
.Times(AnyNumber());
- connection_.reset(new MockConnectionToClient(
- session_, &host_stub_, &event_executor_));
+ connection_.reset(new MockConnectionToClient(session_, &host_stub_));
connection_->SetEventHandler(&handler_);
record_ = new ScreenRecorder(
@@ -122,7 +121,6 @@ class ScreenRecorderTest : public testing::Test {
MockConnectionToClientEventHandler handler_;
MockHostStub host_stub_;
- MockEventExecutor event_executor_;
MockSession* session_; // Owned by |connection_|.
scoped_ptr<MockConnectionToClient> connection_;

Powered by Google App Engine
This is Rietveld 408576698