diff options
author | Josh Matthews <josh@joshmatthews.net> | 2020-04-26 17:34:52 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2020-04-28 11:07:45 -0400 |
commit | 565e9432c61d8f57db32f2376c2ccff82e9798a8 (patch) | |
tree | 8835d9f80aec38c07fc0cda2db0bb5b0a6cf1caa /components/script/script_thread.rs | |
parent | bce4ec5b70f98c98a996b05767dfa7c1915fa0ce (diff) | |
download | servo-565e9432c61d8f57db32f2376c2ccff82e9798a8.tar.gz servo-565e9432c61d8f57db32f2376c2ccff82e9798a8.zip |
Support connecting to worker globals from remote devtools.
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index 7431bcf1032..01d8e7873e2 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -3384,7 +3384,7 @@ impl ScriptThread { url: url, }; chan.send(ScriptToDevtoolsControlMsg::NewGlobal( - (Some(bc), p, w), + (bc, p, w), self.devtools_sender.clone(), page_info.clone(), )) |