diff options
Diffstat (limited to 'components/script/dom/serviceworker.rs')
-rw-r--r-- | components/script/dom/serviceworker.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/serviceworker.rs b/components/script/dom/serviceworker.rs index bcbdd158a40..b01fc2a1d97 100644 --- a/components/script/dom/serviceworker.rs +++ b/components/script/dom/serviceworker.rs @@ -34,8 +34,10 @@ pub type TrustedServiceWorkerAddress = Trusted<ServiceWorker>; pub struct ServiceWorker { eventtarget: EventTarget, script_url: DomRefCell<String>, + #[no_trace] scope_url: ServoUrl, state: Cell<ServiceWorkerState>, + #[no_trace] worker_id: ServiceWorkerId, } |