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

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: 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
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..576d70c7b3179f1bc79036c5571fdedb7a1fc6a6 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,8 +105,7 @@ 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) {}
alexeypa (please no reviews) 2013/04/29 17:17:41 nit: Please move |message_loop_| initialization to
xhwang 2013/04/30 00:02:36 Done.
RdpClientTest::~RdpClientTest() {
}

Powered by Google App Engine
This is Rietveld 408576698