diff options
Diffstat (limited to 'components/script/task_source/file_reading.rs')
-rw-r--r-- | components/script/task_source/file_reading.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/script/task_source/file_reading.rs b/components/script/task_source/file_reading.rs index e94f957234c..8fd3a143eff 100644 --- a/components/script/task_source/file_reading.rs +++ b/components/script/task_source/file_reading.rs @@ -8,7 +8,7 @@ use msg::constellation_msg::PipelineId; use script_runtime::{CommonScriptMsg, ScriptThreadEventCategory, ScriptChan}; use std::sync::Arc; use task::{TaskCanceller, TaskOnce}; -use task_source::TaskSource; +use task_source::{TaskSource, TaskSourceName}; #[derive(JSTraceable)] pub struct FileReadingTaskSource(pub Box<ScriptChan + Send + 'static>, pub PipelineId); @@ -20,6 +20,8 @@ impl Clone for FileReadingTaskSource { } impl TaskSource for FileReadingTaskSource { + const NAME: TaskSourceName = TaskSourceName::FileReading; + fn queue_with_canceller<T>( &self, task: T, |