diff options
Diffstat (limited to 'components/webvr/webvr_thread.rs')
-rw-r--r-- | components/webvr/webvr_thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/webvr/webvr_thread.rs b/components/webvr/webvr_thread.rs index bd0897a281c..5c6889066b1 100644 --- a/components/webvr/webvr_thread.rs +++ b/components/webvr/webvr_thread.rs @@ -287,7 +287,7 @@ impl WebVRThread { fn notify_events(&self, events: Vec<VREvent>) { let pipeline_ids: Vec<PipelineId> = self.contexts.iter().map(|c| *c).collect(); self.constellation_chan - .send(ConstellationMsg::WebVREvents(pipeline_ids.clone(), events)) + .send(ConstellationMsg::WebVREvents(pipeline_ids, events)) .unwrap(); } |