diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-09-13 10:34:07 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-09-13 14:27:45 +0200 |
commit | 7481ce177f4b124f869d3cf8b8f1c2fbf8b84429 (patch) | |
tree | 4e74448ec4be745a8ae8f6f56f081207250fb6f1 /components/script/script_thread.rs | |
parent | 7f9f95b7ce7e7407b7b6b291a6ad452f48c2374b (diff) | |
download | servo-7481ce177f4b124f869d3cf8b8f1c2fbf8b84429.tar.gz servo-7481ce177f4b124f869d3cf8b8f1c2fbf8b84429.zip |
Store a Rc<MicrotaskQueue> directly on Window
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index 597d1dce11c..b2359c3ea94 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -2068,6 +2068,7 @@ impl ScriptThread { incomplete.navigation_start_precise, self.webgl_chan.channel(), self.webvr_chan.clone(), + self.microtask_queue.clone(), ); // Initialize the browsing context for the window. |