aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/serviceworkerregistration.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2020-04-26 17:34:52 -0400
committerJosh Matthews <josh@joshmatthews.net>2020-04-28 11:07:45 -0400
commit565e9432c61d8f57db32f2376c2ccff82e9798a8 (patch)
tree8835d9f80aec38c07fc0cda2db0bb5b0a6cf1caa /components/script/dom/serviceworkerregistration.rs
parentbce4ec5b70f98c98a996b05767dfa7c1915fa0ce (diff)
downloadservo-565e9432c61d8f57db32f2376c2ccff82e9798a8.tar.gz
servo-565e9432c61d8f57db32f2376c2ccff82e9798a8.zip
Support connecting to worker globals from remote devtools.
Diffstat (limited to 'components/script/dom/serviceworkerregistration.rs')
-rw-r--r--components/script/dom/serviceworkerregistration.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/serviceworkerregistration.rs b/components/script/dom/serviceworkerregistration.rs
index f242da12404..9bb578e0d59 100644
--- a/components/script/dom/serviceworkerregistration.rs
+++ b/components/script/dom/serviceworkerregistration.rs
@@ -112,7 +112,7 @@ impl ServiceWorkerRegistration {
let worker_id = WorkerId(Uuid::new_v4());
let devtools_chan = global.devtools_chan().cloned();
- let init = prepare_workerscope_init(&global, None);
+ let init = prepare_workerscope_init(&global, None, None);
ScopeThings {
script_url: script_url,
init: init,