diff options
author | Martin Robinson <mrobinson@igalia.com> | 2025-01-28 12:15:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-28 11:15:36 +0000 |
commit | a1cf0cbf86b93c863bc2b7693a382668d0f38e7c (patch) | |
tree | 2a3dd81905f68de153387cf4b298cabb034a5dfd /components/webdriver_server/lib.rs | |
parent | 78b90030bdaf2af5deefdc065f3688bfa5c37fee (diff) | |
download | servo-a1cf0cbf86b93c863bc2b7693a382668d0f38e7c.tar.gz servo-a1cf0cbf86b93c863bc2b7693a382668d0f38e7c.zip |
libservo: Stop using `script_traits` in the embedding layer (#35185)
Many types used directly in the `libservo` API are in the
`script_traits` crate, which was created to break circular dependencies.
Move all API exposed types to `embedder_traits` which now contains types
exposed via the `libservo` embedding API. Also expose these at the root
of the `libservo` `servo` crate so that the API won't break when they
move around in the future.
The idea with `embedder_traits` in the future is that it contains types
that are available throughout servo because they are used in the
embedding API and thus should have minimal dependencies on other Servo
crates (a bit like `base`).
Signed-off-by: Martin Robinson <mrobinson@igalia.com>
Diffstat (limited to 'components/webdriver_server/lib.rs')
-rw-r--r-- | components/webdriver_server/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/webdriver_server/lib.rs b/components/webdriver_server/lib.rs index 46914c2c11e..a3eb7e48ce1 100644 --- a/components/webdriver_server/lib.rs +++ b/components/webdriver_server/lib.rs @@ -22,6 +22,7 @@ use capabilities::ServoCapabilities; use compositing_traits::ConstellationMsg; use cookie::{CookieBuilder, Expiration}; use crossbeam_channel::{after, select, unbounded, Receiver, Sender}; +use embedder_traits::TraversalDirection; use euclid::{Rect, Size2D}; use http::method::Method; use image::{DynamicImage, ImageFormat, RgbaImage}; @@ -36,7 +37,7 @@ use script_traits::webdriver_msg::{ LoadStatus, WebDriverCookieError, WebDriverFrameId, WebDriverJSError, WebDriverJSResult, WebDriverJSValue, WebDriverScriptCommand, }; -use script_traits::{LoadData, LoadOrigin, TraversalDirection, WebDriverCommandMsg}; +use script_traits::{LoadData, LoadOrigin, WebDriverCommandMsg}; use serde::de::{Deserializer, MapAccess, Visitor}; use serde::ser::Serializer; use serde::{Deserialize, Serialize}; |