| Index: chrome/browser/after_startup_task_utils.cc
|
| diff --git a/chrome/browser/after_startup_task_utils.cc b/chrome/browser/after_startup_task_utils.cc
|
| index 499557a0f2bcf95b760c1d79218ee3a3d7609837..1ba1bd5529627ea2f916b764962b28ac9c214bb0 100644
|
| --- a/chrome/browser/after_startup_task_utils.cc
|
| +++ b/chrome/browser/after_startup_task_utils.cc
|
| @@ -59,7 +59,7 @@ bool IsBrowserStartupComplete() {
|
|
|
| void RunTask(std::unique_ptr<AfterStartupTask> queued_task) {
|
| // We're careful to delete the caller's |task| on the target runner's thread.
|
| - DCHECK(queued_task->task_runner->RunsTasksOnCurrentThread());
|
| + DCHECK(queued_task->task_runner->RunsTasksInCurrentSequence());
|
| std::move(queued_task->task).Run();
|
| }
|
|
|
|
|