diff options
author | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2019-07-01 16:48:18 +0200 |
---|---|---|
committer | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2019-07-04 10:26:48 +0200 |
commit | cd17b6ca666b22248f3ce44d2c071dc6c84a2499 (patch) | |
tree | 3f3c327cf45281c9d4e6ba03cf28ef1cfda407b8 /components/script/script_thread.rs | |
parent | 0da87ad169ca33c8d2bce7a49de77d8821d5cac5 (diff) | |
download | servo-cd17b6ca666b22248f3ce44d2c071dc6c84a2499.tar.gz servo-cd17b6ca666b22248f3ce44d2c071dc6c84a2499.zip |
Fix typos, warnings and other nits
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index fc9498a8ebb..e6d91a1bc2e 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -513,8 +513,6 @@ unsafe_no_jsmanaged_fields!(TaskQueue<MainThreadScriptMsg>); unsafe_no_jsmanaged_fields!(dyn BackgroundHangMonitorRegister); unsafe_no_jsmanaged_fields!(dyn BackgroundHangMonitor); -unsafe_no_jsmanaged_fields!(WindowGLContext); - #[derive(JSTraceable)] // ScriptThread instances are rooted on creation, so this is okay #[allow(unrooted_must_root)] @@ -681,7 +679,7 @@ pub struct ScriptThread { /// An optional string allowing the user agent to be set for testing. user_agent: Cow<'static, str>, - + /// Application window's GL Context for Media player player_context: WindowGLContext, } |