commit | 054861d0934c663de3cea933e1d65fd8319856a6 | [log] [tgz] |
---|---|---|
author | skyostil <[email protected]> | Thu Apr 30 19:06:15 2015 |
committer | Commit bot <[email protected]> | Thu Apr 30 19:07:34 2015 |
tree | 2a6a6a435179172b93bb3ed8adc5341ecfeab564 | |
parent | 98bfd203088a09d06965e6fd6004471c1da13aa7 [diff] [blame] |
base: Remove most uses of MessageLoopProxy Replace most usage of MessageLoopProxy under base/ with SingleThreadTaskRunner and ThreadTaskRunnerHandle (excluding the implementation of MessageLoopProxy itself which will removed later). This patch was mostly autogenerated with https://codereview.chromium.org/1010073002. Depends on https://codereview.chromium.org/1086733002/. BUG=465354 [email protected],[email protected],[email protected] Review URL: https://codereview.chromium.org/1100773004 Cr-Commit-Position: refs/heads/master@{#327755}
diff --git a/base/single_thread_task_runner.h b/base/single_thread_task_runner.h index b5311db..6e93193 100644 --- a/base/single_thread_task_runner.h +++ b/base/single_thread_task_runner.h
@@ -16,7 +16,8 @@ // there is a specific need to run tasks on only a single thread. // // SingleThreadTaskRunner implementations might: -// - Post tasks to an existing thread's MessageLoop (see MessageLoopProxy). +// - Post tasks to an existing thread's MessageLoop (see +// MessageLoop::task_runner()). // - Create their own worker thread and MessageLoop to post tasks to. // - Add tasks to a FIFO and signal to a non-MessageLoop thread for them to // be processed. This allows TaskRunner-oriented code run on threads