Chromium Code Reviews| Index: base/task_runner.cc |
| diff --git a/base/task_runner.cc b/base/task_runner.cc |
| index c3e0574a1bf0c0bf5633f37fd01453657fdbc1be..5d85093b1d657f9c1b04ed56db529cfeb0b0a3c1 100644 |
| --- a/base/task_runner.cc |
| +++ b/base/task_runner.cc |
| @@ -54,6 +54,10 @@ bool TaskRunner::PostTaskAndReply(const tracked_objects::Location& from_here, |
| from_here, std::move(task), std::move(reply)); |
| } |
| +bool TaskRunner::RunsTasksOnCurrentThread() const { |
| + return RunsTasksInCurrentSequence(); |
|
gab
2017/04/26 15:03:05
Actually, let's move this implementation in the he
gab
2017/04/27 14:31:17
FYI: You want to reply "Done." specifically on the
|
| +} |
| + |
| TaskRunner::TaskRunner() {} |
| TaskRunner::~TaskRunner() {} |