Skip to main content

servo_constellation/
lib.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5#![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};