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

Unified Diff: remoting/host/url_fetcher_unittest.cc

Issue 10572005: Use SingleThreadTaskRunner instead of MessageLoopProxy in remoting/host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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/host/url_fetcher_unittest.cc
diff --git a/remoting/host/url_fetcher_unittest.cc b/remoting/host/url_fetcher_unittest.cc
index 811fe419592b116ea525001874850660fc708298..3c1c3f27ac47decddd731594cf9b2dad284f9e1e 100644
--- a/remoting/host/url_fetcher_unittest.cc
+++ b/remoting/host/url_fetcher_unittest.cc
@@ -33,7 +33,7 @@ class UrlFetcherTest : public testing::Test {
base::Thread::Options(MessageLoop::TYPE_IO, 0)));
context_getter_ = new URLRequestContextGetter(
message_loop_.message_loop_proxy(),
- io_thread_.message_loop(),
+ io_thread_.message_loop_proxy(),
static_cast<MessageLoopForIO*>(file_thread_.message_loop()));
ASSERT_TRUE(test_server_.Start());
}

Powered by Google App Engine
This is Rietveld 408576698