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

Unified Diff: remoting/host/chromoting_host_context_unittest.cc

Issue 11018004: Fix ChromotingHost and DesktopEnvironmentFactory references to TaskRunners. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Windows build. Created 8 years, 2 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
« no previous file with comments | « remoting/host/chromoting_host_context.cc ('k') | remoting/host/chromoting_host_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 a4e670fba68b7464da63e0b522a867664fc3a6be..64010e99671c28f99a1d4484331e029e7a79d94f 100644
--- a/remoting/host/chromoting_host_context_unittest.cc
+++ b/remoting/host/chromoting_host_context_unittest.cc
@@ -18,9 +18,13 @@ TEST(ChromotingHostContextTest, StartAndStop) {
base::MessageLoopProxy::current()));
context.Start();
- EXPECT_TRUE(context.network_task_runner());
+ EXPECT_TRUE(context.audio_task_runner());
EXPECT_TRUE(context.capture_task_runner());
EXPECT_TRUE(context.encode_task_runner());
+ EXPECT_TRUE(context.file_task_runner());
+ EXPECT_TRUE(context.input_task_runner());
+ EXPECT_TRUE(context.network_task_runner());
+ EXPECT_TRUE(context.ui_task_runner());
}
} // namespace remoting
« no previous file with comments | « remoting/host/chromoting_host_context.cc ('k') | remoting/host/chromoting_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698