/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/constellation/lib.rs
27 строк
826 B
elomscansio
constellation: Convert constellation's EmbedderProxy to GenericEmbedderProxy (#43646)
27 мар 2026, 09:59
Не верифицирован
27 мар 2026, 09:59
7fe875a
Код
Авторство
О чём код?
/* 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 embedder; mod event_loop; mod logging; mod pipeline; mod process_manager; mod sandboxing; mod serviceworker; mod session_history; pub use crate::constellation::{Constellation, InitialConstellationState}; pub use crate::embedder::ConstellationToEmbedderMsg; pub use crate::event_loop::{EventLoop, NewScriptEventLoopProcessInfo}; pub use crate::logging::{FromEmbedderLogger, FromScriptLogger}; pub use crate::sandboxing::{UnprivilegedContent, content_process_sandbox_profile};