From 2bee0de9f3b39dd2bc3221fa7ed5ee9740d00fc5 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Fri, 20 May 2016 11:56:40 +0200 Subject: [PATCH] Make a few more things private in constellation.rs. --- components/constellation/constellation.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 }