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

Unified Diff: third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate_for_test.cc

Issue 2823103003: Introduce TaskRunner::RunsTasksInCurrentSequence() (Closed)
Patch Set: rebase & remove inline keyword Created 3 years, 7 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: third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate_for_test.cc
diff --git a/third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate_for_test.cc b/third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate_for_test.cc
index 125ed8e7cdecb95d3a9ad911bde93b8c7e2aad2c..b84271eb4855248aea616b82d904859eaa3b7bbb 100644
--- a/third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate_for_test.cc
+++ b/third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate_for_test.cc
@@ -54,8 +54,8 @@ bool SchedulerTqmDelegateForTest::PostNonNestableDelayedTask(
delay);
}
-bool SchedulerTqmDelegateForTest::RunsTasksOnCurrentThread() const {
- return task_runner_->RunsTasksOnCurrentThread();
+bool SchedulerTqmDelegateForTest::RunsTasksInCurrentSequence() const {
+ return task_runner_->RunsTasksInCurrentSequence();
}
bool SchedulerTqmDelegateForTest::IsNested() const {

Powered by Google App Engine
This is Rietveld 408576698