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

Unified Diff: sync/internal_api/attachments/attachment_service_proxy_unittest.cc

Issue 1179163002: Migrate callers of message_loop_proxy() to task_runner() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 5 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: sync/internal_api/attachments/attachment_service_proxy_unittest.cc
diff --git a/sync/internal_api/attachments/attachment_service_proxy_unittest.cc b/sync/internal_api/attachments/attachment_service_proxy_unittest.cc
index fe52f469fba7881ab5211397d976ba6d4dfc6ae7..059a252f6f7fbe8757400e4f9b04d3fc396ae356 100644
--- a/sync/internal_api/attachments/attachment_service_proxy_unittest.cc
+++ b/sync/internal_api/attachments/attachment_service_proxy_unittest.cc
@@ -85,7 +85,7 @@ class AttachmentServiceProxyTest : public testing::Test,
stub_thread.reset(new base::Thread("attachment service stub thread"));
stub_thread->Start();
stub.reset(new StubAttachmentService);
- proxy.reset(new AttachmentServiceProxy(stub_thread->message_loop_proxy(),
+ proxy.reset(new AttachmentServiceProxy(stub_thread->task_runner(),
stub->AsWeakPtr()));
callback_get_or_download =

Powered by Google App Engine
This is Rietveld 408576698