diff options
author | bors-servo <servo-ops@mozilla.com> | 2020-04-05 11:02:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-05 11:02:08 -0400 |
commit | ae49473c25d61452d1cd02db03bc9760b6cd95c2 (patch) | |
tree | 3615866e8cf020b6e1efcadde7789df399d897d5 /components/script/lib.rs | |
parent | 406eefb4b1e02a40638317290006ac8e828e0764 (diff) | |
parent | 1e017a7082e7649a4d2d2f2b8b8d1a1a23c7fb84 (diff) | |
download | servo-ae49473c25d61452d1cd02db03bc9760b6cd95c2.tar.gz servo-ae49473c25d61452d1cd02db03bc9760b6cd95c2.zip |
Auto merge of #26087 - gterzian:allow_service_workers_in_multiprocess, r=jdm
Fix ServiceWorker in multiprocess
<!-- Please describe your changes on the following line: -->
FIX #15217
FIX #26100
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [ ] `./mach build -d` does not report any errors
- [ ] `./mach test-tidy` does not report any errors
- [ ] These changes fix #___ (GitHub issue number if applicable)
<!-- Either: -->
- [ ] There are tests for these changes OR
- [ ] These changes do not require tests because ___
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 13791748931..07090f4716b 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -91,7 +91,7 @@ pub mod script_runtime; #[allow(unsafe_code)] pub mod script_thread; #[warn(deprecated)] -mod serviceworker_manager; +pub mod serviceworker_manager; #[warn(deprecated)] mod serviceworkerjob; #[warn(deprecated)] @@ -115,7 +115,7 @@ mod unpremultiplytable; #[warn(deprecated)] mod webdriver_handlers; -pub use init::{init, init_service_workers}; +pub use init::init; pub use script_runtime::JSEngineSetup; /// A module with everything layout can use from script. |