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

Unified Diff: remoting/host/local_input_monitor_unittest.cc

Issue 14314026: remoting: Use base::MessageLoop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 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/local_input_monitor_linux.cc ('k') | remoting/host/log_to_server_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/local_input_monitor_unittest.cc
diff --git a/remoting/host/local_input_monitor_unittest.cc b/remoting/host/local_input_monitor_unittest.cc
index c1da580cb4302b06bbd7b031f75de4f82ba2b46e..bb9a9b0f66d24a1744bd53c84b0802caf8d6e959 100644
--- a/remoting/host/local_input_monitor_unittest.cc
+++ b/remoting/host/local_input_monitor_unittest.cc
@@ -24,9 +24,11 @@ using testing::ReturnRef;
namespace {
#if defined(OS_WIN)
-const MessageLoop::Type kDesiredMessageLoopType = MessageLoop::TYPE_UI;
+const base::MessageLoop::Type kDesiredMessageLoopType =
+ base::MessageLoop::TYPE_UI;
#else // !defined(OS_WIN)
-const MessageLoop::Type kDesiredMessageLoopType = MessageLoop::TYPE_IO;
+const base::MessageLoop::Type kDesiredMessageLoopType =
+ base::MessageLoop::TYPE_IO;
#endif // !defined(OS_WIN)
} // namespace
@@ -37,7 +39,7 @@ class LocalInputMonitorTest : public testing::Test {
virtual void SetUp() OVERRIDE;
- MessageLoop message_loop_;
+ base::MessageLoop message_loop_;
base::RunLoop run_loop_;
scoped_refptr<AutoThreadTaskRunner> task_runner_;
« no previous file with comments | « remoting/host/local_input_monitor_linux.cc ('k') | remoting/host/log_to_server_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698