mirror of
https://github.com/servo/servo.git
synced 2025-08-09 23:45:35 +01:00
Use Vec for SendableFrameTree::children.
This commit is contained in:
parent
c5aa2ef1b5
commit
7e2e426212
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ impl Clone for ChildFrameTree {
|
||||||
|
|
||||||
pub struct SendableFrameTree {
|
pub struct SendableFrameTree {
|
||||||
pub pipeline: CompositionPipeline,
|
pub pipeline: CompositionPipeline,
|
||||||
pub children: ~[SendableChildFrameTree],
|
pub children: Vec<SendableChildFrameTree>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct SendableChildFrameTree {
|
pub struct SendableChildFrameTree {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue