mirror of
https://github.com/servo/servo.git
synced 2025-06-08 16:43:28 +00:00
Make a few more things private in constellation.rs.
This commit is contained in:
parent
bcea0ada27
commit
2bee0de9f3
1 changed files with 3 additions and 3 deletions
|
@ -168,7 +168,7 @@ pub struct Constellation<LTF, STF> {
|
|||
|
||||
phantom: PhantomData<(LTF, STF)>,
|
||||
|
||||
pub window_size: WindowSizeData,
|
||||
window_size: WindowSizeData,
|
||||
|
||||
/// Means of accessing the clipboard
|
||||
clipboard_ctx: Option<ClipboardContext>,
|
||||
|
@ -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<PipelineId>,
|
||||
current: PipelineId,
|
||||
next: Vec<PipelineId>,
|
||||
|
@ -296,7 +296,7 @@ struct WebDriverData {
|
|||
}
|
||||
|
||||
impl WebDriverData {
|
||||
pub fn new() -> WebDriverData {
|
||||
fn new() -> WebDriverData {
|
||||
WebDriverData {
|
||||
load_channel: None
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue