aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/task_source/mod.rs
Commit message (Collapse)AuthorAgeFilesLines
* Update MPL license to https (part 3)Jan Andre Ikenmeyer2018-11-191-1/+1
|
* Sort `use` statementsSimon Sapin2018-11-061-1/+1
|
* `cargo fix --edition`Simon Sapin2018-11-061-2/+2
|
* Add task source for media elementchansuke2018-10-101-0/+2
|
* Format script componentchansuke2018-09-191-6/+1
|
* Add Websocket task sourceAgustin Chiappe Berrini2018-09-081-1/+3
| | | | | | | | According to the doc: https://html.spec.whatwg.org/multipage/web-sockets.html#network The task source for all tasks queued in the websocket section are the websocket task source, so this commit also updates those references to use the appropriate one.
* Add the TaskSourceName to CommonScriptMsg::TaskAgustin Chiappe Berrini2018-09-041-1/+1
| | | | Update QueuedTaskConversion and the TaskQueue to use it
* use remote-event task source in EventSourceGregory Terzian2018-07-131-1/+3
|
* introduce "per task source" ignoring of tasksGregory Terzian2018-07-101-1/+26
|
* Introduce TaskOnceAnthony Ramine2017-09-201-6/+6
| | | | | Having both TaskBox and TaskOnce allows us to remove the superfluous inner boxing from CancellableTask<T>.
* Rename Task to TaskBoxAnthony Ramine2017-09-201-3/+3
|
* 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