diff options
Diffstat (limited to 'remoting/host/chromoting_host_context_unittest.cc')
-rw-r--r-- | remoting/host/chromoting_host_context_unittest.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/remoting/host/chromoting_host_context_unittest.cc b/remoting/host/chromoting_host_context_unittest.cc index 3d857b3..21bcab8 100644 --- a/remoting/host/chromoting_host_context_unittest.cc +++ b/remoting/host/chromoting_host_context_unittest.cc @@ -3,7 +3,6 @@ // found in the LICENSE file. #include "base/message_loop.h" -#include "base/message_loop_proxy.h" #include "remoting/host/chromoting_host_context.h" #include "testing/gtest/include/gtest/gtest.h" @@ -12,10 +11,7 @@ namespace remoting { // A simple test that starts and stop the context. This tests the context // operates properly and all threads and message loops are valid. TEST(ChromotingHostContextTest, StartAndStop) { - MessageLoop message_loop; - ChromotingHostContext context( - base::MessageLoopProxy::current()); - + ChromotingHostContext context; context.Start(); EXPECT_TRUE(context.jingle_thread()); EXPECT_TRUE(context.main_message_loop()); |