Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: chrome/browser/after_startup_task_utils.cc

Issue 2823103003: Introduce TaskRunner::RunsTasksInCurrentSequence() (Closed)
Patch Set: fixed build error and commments Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 7ada46214f0255fba5830ab03c4b18389334ac56..335916d01f234c5316a9c2f15a4e852ba8b4ae3e 100644
--- a/chrome/browser/after_startup_task_utils.cc
+++ b/chrome/browser/after_startup_task_utils.cc
@@ -212,8 +212,8 @@ bool AfterStartupTaskUtils::Runner::PostDelayedTask(
return true;
}
-bool AfterStartupTaskUtils::Runner::RunsTasksOnCurrentThread() const {
- return destination_runner_->RunsTasksOnCurrentThread();
+bool AfterStartupTaskUtils::Runner::RunsTasksInCurrentSequence() const {
+ return destination_runner_->RunsTasksInCurrentSequence();
}
void AfterStartupTaskUtils::StartMonitoringStartup() {

Powered by Google App Engine
This is Rietveld 408576698