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 screenshot_readiness_request;
21mod serviceworker;
22mod session_history;
23
24pub use crate::constellation::{Constellation, InitialConstellationState};
25pub use crate::embedder::ConstellationToEmbedderMsg;
26pub use crate::event_loop::{EventLoop, NewScriptEventLoopProcessInfo};
27pub use crate::logging::{FromEmbedderLogger, FromScriptLogger};
28pub use crate::sandboxing::{UnprivilegedContent, content_process_sandbox_profile};