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

Unified Diff: remoting/host/win/rdp_client_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/win/rdp_client.cc ('k') | remoting/host/win/worker_process_launcher_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/rdp_client_unittest.cc
diff --git a/remoting/host/win/rdp_client_unittest.cc b/remoting/host/win/rdp_client_unittest.cc
index 229bc06c9a56e4c9b6256f1a3b2a4ba6eca7eb0d..3b458f00089446b326563ae505992572d4e5bad3 100644
--- a/remoting/host/win/rdp_client_unittest.cc
+++ b/remoting/host/win/rdp_client_unittest.cc
@@ -94,7 +94,7 @@ class RdpClientTest : public testing::Test {
// The UI message loop used by RdpClient. The loop is stopped once there is no
// more references to |task_runner_|.
- MessageLoop message_loop_;
+ base::MessageLoop message_loop_;
base::RunLoop run_loop_;
scoped_refptr<AutoThreadTaskRunner> task_runner_;
@@ -105,7 +105,8 @@ class RdpClientTest : public testing::Test {
scoped_ptr<RdpClient> rdp_client_;
};
-RdpClientTest::RdpClientTest() : message_loop_(MessageLoop::TYPE_UI) {
+RdpClientTest::RdpClientTest()
+ : message_loop_(base::MessageLoop::TYPE_UI) {
}
RdpClientTest::~RdpClientTest() {
« no previous file with comments | « remoting/host/win/rdp_client.cc ('k') | remoting/host/win/worker_process_launcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698