From 8a033aaf2d76655ce5686cd80b36a759582dcd6d Mon Sep 17 00:00:00 2001 From: skyostil Date: Wed, 17 Jun 2015 08:46:04 -0700 Subject: Migrate callers of message_loop_proxy() to task_runner() Migrate callers of {MessageLoop,Thread}::message_loop_proxy() to {MessageLoop,Thread}::task_runner(). Since the types at the call sites have already been updated, this is just a bulk rename. BUG=465354 TBR=armansito@chromium.org Review URL: https://codereview.chromium.org/1179163002 Cr-Commit-Position: refs/heads/master@{#334840} --- dbus/bus.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dbus/bus.cc') diff --git a/dbus/bus.cc b/dbus/bus.cc index 2f1300a..388911a 100644 --- a/dbus/bus.cc +++ b/dbus/bus.cc @@ -201,7 +201,7 @@ Bus::Bus(const Options& options) // The origin message loop is unnecessary if the client uses synchronous // functions only. if (base::MessageLoop::current()) - origin_task_runner_ = base::MessageLoop::current()->message_loop_proxy(); + origin_task_runner_ = base::MessageLoop::current()->task_runner(); } Bus::~Bus() { -- cgit v1.1