servo_constellation/
lib.rs1#![deny(unsafe_code)]
6
7#[macro_use]
8mod tracing;
9
10mod broadcastchannel;
11mod browsingcontext;
12mod constellation;
13mod constellation_webview;
14mod embedder;
15mod event_loop;
16mod logging;
17mod pipeline;
18mod process_manager;
19mod sandboxing;
20mod serviceworker;
21mod session_history;
22
23pub use crate::constellation::{Constellation, InitialConstellationState};
24pub use crate::embedder::ConstellationToEmbedderMsg;
25pub use crate::event_loop::{EventLoop, NewScriptEventLoopProcessInfo};
26pub use crate::logging::{FromEmbedderLogger, FromScriptLogger};
27pub use crate::sandboxing::{UnprivilegedContent, content_process_sandbox_profile};