mirror of
https://github.com/servo/servo.git
synced 2025-10-02 17:49:16 +01:00
libservo: Re-export types that are used by servoshell (#39586)
servoshell should not depend on internal Servo crates. Instead, `libervo` should re-export any types that are used by embedders. This change does that re-export for private types currently used by servoshell. Testing: This just changes the way types are imported, so curent tests should suffice. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
parent
6a1a3aea08
commit
e9d0a8f95d
8 changed files with 21 additions and 26 deletions
|
@ -63,11 +63,12 @@ use constellation::{
|
|||
Constellation, FromEmbedderLogger, FromScriptLogger, InitialConstellationState,
|
||||
UnprivilegedContent,
|
||||
};
|
||||
use constellation_traits::{EmbedderToConstellationMessage, ScriptToConstellationChan};
|
||||
pub use constellation_traits::EmbedderToConstellationMessage;
|
||||
use constellation_traits::ScriptToConstellationChan;
|
||||
use crossbeam_channel::{Receiver, Sender, unbounded};
|
||||
use embedder_traits::FormControl as EmbedderFormControl;
|
||||
use embedder_traits::user_content_manager::UserContentManager;
|
||||
pub use embedder_traits::*;
|
||||
pub use embedder_traits::{WebDriverSenders, *};
|
||||
use env_logger::Builder as EnvLoggerBuilder;
|
||||
use fonts::SystemFontService;
|
||||
#[cfg(all(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue