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

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

Issue 2812313002: [scheduler] Remove blink::scheduler::TaskQueue from public API. (Closed)
Patch Set: 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.h
diff --git a/third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.h b/third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.h
index 4659927f81d32d03ed3ac13d715f45d17bfd8d99..e3b2bf6822da62d5a87c45a54186ca76d04c6eac 100644
--- a/third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.h
+++ b/third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.h
@@ -46,12 +46,12 @@ class BLINK_PLATFORM_EXPORT SchedulerHelper
const base::PendingTask& task) override;
// Returns the default task runner.
Sami 2017/04/12 16:45:21 Please update these comments.
altimin 2017/04/12 17:02:25 Done.
- scoped_refptr<TaskQueue> DefaultTaskRunner();
+ scoped_refptr<TaskQueue> DefaultTaskQueue();
// Returns the control task runner. Tasks posted to this runner are executed
// with the highest priority. Care must be taken to avoid starvation of other
// task queues.
- scoped_refptr<TaskQueue> ControlTaskRunner();
+ scoped_refptr<TaskQueue> ControlTaskQueue();
// Adds or removes a task observer from the scheduler. The observer will be
// notified before and after every executed task. These functions can only be

Powered by Google App Engine
This is Rietveld 408576698