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

Unified Diff: remoting/host/chromoting_host_context_unittest.cc

Issue 5118002: Rename SessionManager to ScreenRecorder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed Created 10 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
Index: remoting/host/chromoting_host_context_unittest.cc
diff --git a/remoting/host/chromoting_host_context_unittest.cc b/remoting/host/chromoting_host_context_unittest.cc
index 6b481d7a18cbc79f5c015a7f7f4a63cc8cc20dfc..827ad37242eea687906e74eb0bce061b0ed9251c 100644
--- a/remoting/host/chromoting_host_context_unittest.cc
+++ b/remoting/host/chromoting_host_context_unittest.cc
@@ -15,13 +15,11 @@ TEST(ChromotingHostContextTest, StartAndStop) {
context.Start();
EXPECT_TRUE(context.jingle_thread());
EXPECT_TRUE(context.main_message_loop());
- EXPECT_TRUE(context.capture_message_loop());
EXPECT_TRUE(context.encode_message_loop());
context.Stop();
// Expect all the threads are stopped.
EXPECT_FALSE(context.main_thread_.IsRunning());
- EXPECT_FALSE(context.capture_thread_.IsRunning());
EXPECT_FALSE(context.encode_thread_.IsRunning());
}

Powered by Google App Engine
This is Rietveld 408576698