mirror of
https://github.com/servo/servo.git
synced 2025-06-09 17:13:24 +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)>,
|
phantom: PhantomData<(LTF, STF)>,
|
||||||
|
|
||||||
pub window_size: WindowSizeData,
|
window_size: WindowSizeData,
|
||||||
|
|
||||||
/// Means of accessing the clipboard
|
/// Means of accessing the clipboard
|
||||||
clipboard_ctx: Option<ClipboardContext>,
|
clipboard_ctx: Option<ClipboardContext>,
|
||||||
|
@ -221,7 +221,7 @@ pub struct InitialConstellationState {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Stores the navigation context for a single frame in the frame tree.
|
/// Stores the navigation context for a single frame in the frame tree.
|
||||||
pub struct Frame {
|
struct Frame {
|
||||||
prev: Vec<PipelineId>,
|
prev: Vec<PipelineId>,
|
||||||
current: PipelineId,
|
current: PipelineId,
|
||||||
next: Vec<PipelineId>,
|
next: Vec<PipelineId>,
|
||||||
|
@ -296,7 +296,7 @@ struct WebDriverData {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl WebDriverData {
|
impl WebDriverData {
|
||||||
pub fn new() -> WebDriverData {
|
fn new() -> WebDriverData {
|
||||||
WebDriverData {
|
WebDriverData {
|
||||||
load_channel: None
|
load_channel: None
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue