Chromium Code Reviews| 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() { |
| } |