| 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();
|
| +}
|
| +
|
| TaskRunner::TaskRunner() {}
|
|
|
| TaskRunner::~TaskRunner() {}
|
|
|