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

Unified Diff: remoting/host/client_session_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/chromoting_host_unittest.cc ('k') | remoting/host/clipboard_x11.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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, "") {
« no previous file with comments | « remoting/host/chromoting_host_unittest.cc ('k') | remoting/host/clipboard_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698