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

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

Issue 2812313002: [scheduler] Remove blink::scheduler::TaskQueue from public API. (Closed)
Patch Set: Rebased & addressed skyostil@'s comment 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: third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.cc
diff --git a/third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.cc b/third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.cc
index 776c7f723fae8a477528351dfc5f4240f08a8c9e..346d8c9c744c6cd4fca67a4691cbd204920399ec 100644
--- a/third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.cc
+++ b/third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.cc
@@ -81,12 +81,12 @@ scoped_refptr<TaskQueue> SchedulerHelper::NewTaskQueue(
return task_queue_manager_->NewTaskQueue(spec);
}
-scoped_refptr<TaskQueue> SchedulerHelper::DefaultTaskRunner() {
+scoped_refptr<TaskQueue> SchedulerHelper::DefaultTaskQueue() {
CheckOnValidThread();
return default_task_runner_;
}
-scoped_refptr<TaskQueue> SchedulerHelper::ControlTaskRunner() {
+scoped_refptr<TaskQueue> SchedulerHelper::ControlTaskQueue() {
return control_task_runner_;
}

Powered by Google App Engine
This is Rietveld 408576698