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

Unified Diff: third_party/WebKit/Source/platform/scheduler/README.md

Issue 2118903002: scheduler: Move the Blink scheduler into Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Really fixed the test failure this time Created 4 years, 4 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/README.md
diff --git a/third_party/WebKit/Source/platform/scheduler/README.md b/third_party/WebKit/Source/platform/scheduler/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..0ac9ed5641e7b499623fda0c1f5bc6810b8f386e
--- /dev/null
+++ b/third_party/WebKit/Source/platform/scheduler/README.md
@@ -0,0 +1,13 @@
+# Blink Scheduler
+
+This directory contains the Blink Scheduler, which coordinates task execution
+in renderer processes. The main subdirectories are:
+
+- `base/` -- basic scheduling primitives such as `TaskQueue` and
+ `TaskQueueManager`.
+- `child/` -- contains the `ChildScheduler` which is the base class for all
+ thread schedulers, as well as a `WorkerScheduler` for worker threads.
+- `utility/` -- a small scheduler for utility processes.
+- `renderer/` -- `RendererScheduler` for the renderer process.
+
+The scheduler exposes an API at `public/platform/scheduler`.

Powered by Google App Engine
This is Rietveld 408576698