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

Unified Diff: chrome/browser/net/dns_probe_service_unittest.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (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: chrome/browser/net/dns_probe_service_unittest.cc
diff --git a/chrome/browser/net/dns_probe_service_unittest.cc b/chrome/browser/net/dns_probe_service_unittest.cc
index a687df4094f3b556027ee9c982c102e0d200f7fd..3fe41fc21ce20b5dc6aaafa9c0d5c2bcd1f8d303 100644
--- a/chrome/browser/net/dns_probe_service_unittest.cc
+++ b/chrome/browser/net/dns_probe_service_unittest.cc
@@ -24,7 +24,7 @@ class MockDnsProbeJob : public DnsProbeJob {
MockDnsProbeJob(const CallbackType& callback,
DnsProbeJob::Result result)
: ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)) {
- MessageLoop::current()->PostTask(
+ base::MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&MockDnsProbeJob::CallCallback,
weak_factory_.GetWeakPtr(),
@@ -131,7 +131,7 @@ class DnsProbeServiceTest : public testing::Test {
callback_called_ = false;
}
- MessageLoopForIO message_loop_;
+ base::MessageLoopForIO message_loop_;
TestDnsProbeService service_;
bool callback_called_;
DnsProbeResult callback_result_;

Powered by Google App Engine
This is Rietveld 408576698