diff options
author | Gregory Terzian <gterzian@users.noreply.github.com> | 2020-04-04 13:19:43 +0800 |
---|---|---|
committer | Gregory Terzian <gterzian@users.noreply.github.com> | 2020-04-05 22:43:37 +0800 |
commit | 1e017a7082e7649a4d2d2f2b8b8d1a1a23c7fb84 (patch) | |
tree | 5a795fc0dd5e94ae089e10188f309198735c5b32 /components/constellation/lib.rs | |
parent | db217d557513030836898f840206d5ac9ed87b79 (diff) | |
download | servo-1e017a7082e7649a4d2d2f2b8b8d1a1a23c7fb84.tar.gz servo-1e017a7082e7649a4d2d2f2b8b8d1a1a23c7fb84.zip |
allow for a service worker network mediator per origin
Diffstat (limited to 'components/constellation/lib.rs')
-rw-r--r-- | components/constellation/lib.rs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/components/constellation/lib.rs b/components/constellation/lib.rs index 0e28b880cce..92495c50cd9 100644 --- a/components/constellation/lib.rs +++ b/components/constellation/lib.rs @@ -16,13 +16,6 @@ mod constellation; mod event_loop; mod network_listener; mod pipeline; -#[cfg(all( - not(target_os = "windows"), - not(target_os = "ios"), - not(target_os = "android"), - not(target_arch = "arm"), - not(target_arch = "aarch64") -))] mod sandboxing; mod serviceworker; mod session_history; @@ -32,11 +25,4 @@ pub use crate::constellation::{ Constellation, FromCompositorLogger, FromScriptLogger, InitialConstellationState, }; pub use crate::pipeline::UnprivilegedPipelineContent; -#[cfg(all( - not(target_os = "windows"), - not(target_os = "ios"), - not(target_os = "android"), - not(target_arch = "arm"), - not(target_arch = "aarch64") -))] pub use crate::sandboxing::{content_process_sandbox_profile, UnprivilegedContent}; |