diff options
Diffstat (limited to 'components/script/dom/filereader.rs')
-rw-r--r-- | components/script/dom/filereader.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/filereader.rs b/components/script/dom/filereader.rs index 96b14caed9d..02aef5e3f01 100644 --- a/components/script/dom/filereader.rs +++ b/components/script/dom/filereader.rs @@ -360,10 +360,10 @@ impl FileReader { let load_data = ReadMetaData::new(String::from(type_), label.map(String::from), function); - let fr = Trusted::new(global.get_cx(), self, global.script_chan()); + let fr = Trusted::new(global.get_cx(), self, global.file_reading_task_source()); let gen_id = self.generation_id.get(); - let script_chan = global.script_chan(); + let script_chan = global.file_reading_task_source(); spawn_named("file reader async operation".to_owned(), move || { perform_annotated_read_operation(gen_id, load_data, bytes, fr, script_chan) |