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

Unified Diff: content/browser/resolve_proxy_msg_helper_unittest.cc

Issue 136683004: Removes MessageLoop::TYPE_XXX where possible (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: resolve merge Created 6 years, 11 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: content/browser/resolve_proxy_msg_helper_unittest.cc
diff --git a/content/browser/resolve_proxy_msg_helper_unittest.cc b/content/browser/resolve_proxy_msg_helper_unittest.cc
index 91f0243b2e7c53a418d6532d8dafb2a2235a50fb..023fe43567a24a41d3fc053e1bf0c2742f709e2c 100644
--- a/content/browser/resolve_proxy_msg_helper_unittest.cc
+++ b/content/browser/resolve_proxy_msg_helper_unittest.cc
@@ -63,7 +63,6 @@ class ResolveProxyMsgHelperTest : public testing::Test, public IPC::Listener {
service_(
new net::ProxyService(new MockProxyConfigService, resolver_, NULL)),
helper_(new TestResolveProxyMsgHelper(service_.get(), this)),
- message_loop_(base::MessageLoop::TYPE_IO),
io_thread_(BrowserThread::IO, &message_loop_) {
test_sink_.AddFilter(this);
}
@@ -97,7 +96,7 @@ class ResolveProxyMsgHelperTest : public testing::Test, public IPC::Listener {
return true;
}
- base::MessageLoop message_loop_;
+ base::MessageLoopForIO message_loop_;
BrowserThreadImpl io_thread_;
IPC::TestSink test_sink_;
};

Powered by Google App Engine
This is Rietveld 408576698