diff options
author | Keith Yeung <kungfukeith11@gmail.com> | 2016-06-02 15:27:08 -0400 |
---|---|---|
committer | Keith Yeung <kungfukeith11@gmail.com> | 2016-06-02 15:27:08 -0400 |
commit | 05fc799f923813bf0b63d50218f916684a499b87 (patch) | |
tree | b7d036eebc3e13d18606df9105a19cb49d92b798 /components/script/dom/window.rs | |
parent | bdecfa13d2114281472d5df4548a8faaf8a5bd87 (diff) | |
download | servo-05fc799f923813bf0b63d50218f916684a499b87.tar.gz servo-05fc799f923813bf0b63d50218f916684a499b87.zip |
Clean up DOMManipulationTaskSource
Diffstat (limited to 'components/script/dom/window.rs')
-rw-r--r-- | components/script/dom/window.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs index 475fef1a0ad..0ed85f576d9 100644 --- a/components/script/dom/window.rs +++ b/components/script/dom/window.rs @@ -280,7 +280,7 @@ impl Window { self.js_runtime.borrow().as_ref().unwrap().cx() } - pub fn dom_manipulation_task_source(&self) -> Box<TaskSource<DOMManipulationTask> + Send> { + pub fn dom_manipulation_task_source(&self) -> DOMManipulationTaskSource { self.dom_manipulation_task_source.clone() } |