Auto merge of #11290 - servo:privatize-constellation, r=nox

Privatize constellation

Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy --faster` does not report any errors
- [ ] These changes fix #__ (github issue number if applicable).

Either:
- [ ] There are tests for these changes OR
- [x] These changes do not require tests because _____

Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11290)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-05-20 09:14:39 -07:00
commit d9e19f491f

View file

@ -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
}