mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
layout: Limit visibility of some types and removed unused enum variants / data (#38428)
Testing: This change mainly removes dead code, so no tests necessary. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
parent
e78d8818a0
commit
a7b232ef4c
7 changed files with 16 additions and 24 deletions
|
@ -8,9 +8,9 @@
|
|||
//! painted.
|
||||
|
||||
mod cell;
|
||||
pub mod context;
|
||||
pub mod display_list;
|
||||
pub mod dom;
|
||||
mod context;
|
||||
mod display_list;
|
||||
mod dom;
|
||||
mod dom_traversal;
|
||||
mod flexbox;
|
||||
pub mod flow;
|
||||
|
@ -24,18 +24,18 @@ mod taffy;
|
|||
mod construct_modern;
|
||||
mod lists;
|
||||
mod positioned;
|
||||
pub mod query;
|
||||
mod query;
|
||||
mod quotes;
|
||||
mod replaced;
|
||||
mod sizing;
|
||||
mod style_ext;
|
||||
pub mod table;
|
||||
pub mod traversal;
|
||||
mod traversal;
|
||||
|
||||
use app_units::Au;
|
||||
pub use cell::ArcRefCell;
|
||||
pub use flow::BoxTree;
|
||||
pub use fragment_tree::FragmentTree;
|
||||
pub(crate) use flow::BoxTree;
|
||||
pub(crate) use fragment_tree::FragmentTree;
|
||||
pub use layout_impl::LayoutFactoryImpl;
|
||||
use malloc_size_of_derive::MallocSizeOf;
|
||||
use servo_arc::Arc as ServoArc;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue