| Index: remoting/host/client_session_unittest.cc
 | 
| diff --git a/remoting/host/client_session_unittest.cc b/remoting/host/client_session_unittest.cc
 | 
| index a5c687b00697f9479bf2dccafea96b98317d37a3..10d27d3c640083372d5316a05168dc31202b036b 100644
 | 
| --- a/remoting/host/client_session_unittest.cc
 | 
| +++ b/remoting/host/client_session_unittest.cc
 | 
| @@ -90,7 +90,7 @@ class ClientSessionTest : public testing::Test {
 | 
|    void QuitMainMessageLoop();
 | 
|  
 | 
|    // Message loop passed to |client_session_| to perform all functions on.
 | 
| -  MessageLoop message_loop_;
 | 
| +  base::MessageLoop message_loop_;
 | 
|  
 | 
|    // ClientSession instance under test.
 | 
|    scoped_ptr<ClientSession> client_session_;
 | 
| @@ -217,7 +217,7 @@ void ClientSessionTest::ConnectClientSession() {
 | 
|  }
 | 
|  
 | 
|  void ClientSessionTest::QuitMainMessageLoop() {
 | 
| -  message_loop_.PostTask(FROM_HERE, MessageLoop::QuitClosure());
 | 
| +  message_loop_.PostTask(FROM_HERE, base::MessageLoop::QuitClosure());
 | 
|  }
 | 
|  
 | 
|  MATCHER_P2(EqualsClipboardEvent, m, d, "") {
 | 
| 
 |