aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/task_source/mod.rs
Commit message (Collapse)AuthorAgeFilesLines
* Make Task require SendAnthony Ramine2017-09-201-2/+5
|
* Move Task to its own moduleAnthony Ramine2017-09-181-1/+1
|
* Rename Runnable to TaskAnthony Ramine2017-09-161-8/+11
| | | | | | | | | | | | The changes are: * `*Runnable` -> `*Task`; * `RunnableMsg` -> `Task`; * `RunnableWrapper` -> `TaskCanceller`; * `MainThreadRunnable` -> `MainThreadTask`; * `wrap_runnable` -> `wrap_task`; * `get_runnable_wrapper` -> `task_canceller`; * `handler` -> `run`; * `main_thread_handler` -> `run_with_script_thread`.
* Performance Timeline APIFernando Jiménez Moreno2017-08-171-0/+1
|
* Make TaskSource::queue take a &GlobalScopeAnthony Ramine2016-10-061-3/+3
|
* Introduce GlobalScope::get_runnable_wrapperAnthony Ramine2016-10-061-1/+1
|
* Make task queue API usable from non-main threads.Josh Matthews2016-07-141-3/+10
|
* Move boxing to runnable initializationConnor Brewster2016-07-131-1/+1
|
* Make all task source runnables cancellableConnor Brewster2016-07-131-2/+4
| | | | Implement all Runnable methods on CancellableRunnable to redirect to their inner runnable
* Implement user interaction task sourceKeith Yeung2016-05-111-1/+0
|
* Add task_source directoryKeith Yeung2016-03-101-0/+16
Use DOMManipulationTaskSource whenever possible