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 event_loop;
15mod logging;
16mod pipeline;
17mod process_manager;
18mod sandboxing;
19mod serviceworker;
20mod session_history;
21mod webview_manager;
22
23pub use crate::constellation::{Constellation, InitialConstellationState};
24pub use crate::event_loop::{EventLoop, NewScriptEventLoopProcessInfo};
25pub use crate::logging::{FromEmbedderLogger, FromScriptLogger};
26pub use crate::sandboxing::{UnprivilegedContent, content_process_sandbox_profile};