mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Messages that are sent to the `Constellation` have pretty ambiguous names. This change does two renames: - `ConstellationMsg` → `EmbedderToConstellationMessage` - `ScriptMsg` → `ScriptToConstellationMessage` This naming reflects that the `Constellation` stands in between the embedding layer and the script layer and can receive messages from both. Soon both of these message types will live in `constellation_traits`, reflecting the idea that the `_traits` variant for a crate is responsible for exposing the API for that crate. Testing: No new tests are necessary here as this just renames two enums. Signed-off-by: Martin Robinson <mrobinson@igalia.com> Signed-off-by: Martin Robinson <mrobinson@igalia.com>
24 lines
714 B
Rust
24 lines
714 B
Rust
/* 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 browsingcontext;
|
|
mod constellation;
|
|
mod event_loop;
|
|
mod logging;
|
|
mod pipeline;
|
|
mod process_manager;
|
|
mod sandboxing;
|
|
mod serviceworker;
|
|
mod session_history;
|
|
mod webview_manager;
|
|
|
|
pub use crate::constellation::{Constellation, InitialConstellationState};
|
|
pub use crate::logging::{FromEmbedderLogger, FromScriptLogger};
|
|
pub use crate::pipeline::UnprivilegedPipelineContent;
|
|
pub use crate::sandboxing::{UnprivilegedContent, content_process_sandbox_profile};
|