diff --git a/components/constellation/constellation.rs b/components/constellation/constellation.rs index 88f8bd02265..239dbbc3fc3 100644 --- a/components/constellation/constellation.rs +++ b/components/constellation/constellation.rs @@ -168,7 +168,7 @@ pub struct Constellation { phantom: PhantomData<(LTF, STF)>, - pub window_size: WindowSizeData, + window_size: WindowSizeData, /// Means of accessing the clipboard clipboard_ctx: Option, @@ -221,7 +221,7 @@ pub struct InitialConstellationState { } /// Stores the navigation context for a single frame in the frame tree. -pub struct Frame { +struct Frame { prev: Vec, current: PipelineId, next: Vec, @@ -296,7 +296,7 @@ struct WebDriverData { } impl WebDriverData { - pub fn new() -> WebDriverData { + fn new() -> WebDriverData { WebDriverData { load_channel: None }