| Index: chrome/browser/after_startup_task_utils.h
|
| diff --git a/chrome/browser/after_startup_task_utils.h b/chrome/browser/after_startup_task_utils.h
|
| index dbd9b63c40efb7d71067716ed7058544b62d9e99..a190c06b3ae501122d17a0537b22b9dc44c52cd7 100644
|
| --- a/chrome/browser/after_startup_task_utils.h
|
| +++ b/chrome/browser/after_startup_task_utils.h
|
| @@ -26,7 +26,7 @@ class AfterStartupTaskUtils {
|
|
|
| // Overrides from base::TaskRunner:
|
| bool PostDelayedTask(const tracked_objects::Location& from_here,
|
| - base::Closure task,
|
| + base::OnceClosure task,
|
| base::TimeDelta delay) override;
|
| bool RunsTasksOnCurrentThread() const override;
|
|
|
| @@ -47,7 +47,7 @@ class AfterStartupTaskUtils {
|
| static void PostTask(
|
| const tracked_objects::Location& from_here,
|
| const scoped_refptr<base::TaskRunner>& destination_runner,
|
| - base::Closure task);
|
| + base::OnceClosure task);
|
|
|
| // Returns true if browser startup is complete. Only use this on a one-off
|
| // basis; If you need to poll this function constantly, use the above
|
|
|