mirror of
https://github.com/servo/servo.git
synced 2025-07-18 04:43:41 +01:00
- Move the 2 hash maps used to manage channels in their own struct. - The constellation is still in charge of origin checks since it holds the pipeline information required. - BroadcastMsg is renamed to BroadcastChannelMsg for consistency. Testing: covered by existing tests. Fixes: #38060 Signed-off-by: webbeef <me@webbeef.org>
26 lines
763 B
Rust
26 lines
763 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
#![deny(unsafe_code)]
|
|
|
|
#[macro_use]
|
|
mod tracing;
|
|
|
|
mod broadcastchannel;
|
|
mod browsingcontext;
|
|
mod constellation;
|
|
mod constellation_webview;
|
|
mod event_loop;
|
|
mod logging;
|
|
mod pipeline;
|
|
mod process_manager;
|
|
mod sandboxing;
|
|
mod serviceworker;
|
|
mod session_history;
|
|
mod webview_manager;
|
|
|
|
pub use crate::constellation::{Constellation, InitialConstellationState};
|
|
pub use crate::logging::{FromEmbedderLogger, FromScriptLogger};
|
|
pub use crate::pipeline::UnprivilegedPipelineContent;
|
|
pub use crate::sandboxing::{UnprivilegedContent, content_process_sandbox_profile};
|