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

Unified Diff: remoting/jingle_glue/iq_sender_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
Index: remoting/jingle_glue/iq_sender_unittest.cc
diff --git a/remoting/jingle_glue/iq_sender_unittest.cc b/remoting/jingle_glue/iq_sender_unittest.cc
index 287673573cba6aa75f1eb2fad9579da542fa5b75..b6334513fb4e3df15b29b8aeab90e8fba8d08ada 100644
--- a/remoting/jingle_glue/iq_sender_unittest.cc
+++ b/remoting/jingle_glue/iq_sender_unittest.cc
@@ -78,7 +78,7 @@ class IqSenderTest : public testing::Test {
delete sent_stanza;
}
- MessageLoop message_loop_;
+ base::MessageLoop message_loop_;
MockSignalStrategy signal_strategy_;
scoped_ptr<IqSender> sender_;
MockCallback callback_;
@@ -113,7 +113,7 @@ TEST_F(IqSenderTest, Timeout) {
request_->SetTimeout(base::TimeDelta::FromMilliseconds(2));
EXPECT_CALL(callback_, OnReply(request_.get(), NULL))
- .WillOnce(InvokeWithoutArgs(&message_loop_, &MessageLoop::Quit));
+ .WillOnce(InvokeWithoutArgs(&message_loop_, &base::MessageLoop::Quit));
message_loop_.Run();
}
« no previous file with comments | « remoting/jingle_glue/chromium_socket_factory_unittest.cc ('k') | remoting/protocol/authenticator_test_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698