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

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: rebase again Created 7 years, 7 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 cee54752f4b5d9f90729756f5b311903cbe542cb..108332a3949daa95c7a4d0826e9e1ba19bf46da5 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)
: 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_;
« no previous file with comments | « chrome/browser/net/dns_probe_job_unittest.cc ('k') | chrome/browser/net/http_pipelining_compatibility_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698