diff options
author | Tim van der Meij <timvandermeij@gmail.com> | 2016-02-20 16:48:54 +0100 |
---|---|---|
committer | Tim van der Meij <timvandermeij@gmail.com> | 2016-02-20 19:20:38 +0100 |
commit | 307f2915f2a89e5528a87cee035787326b2751df (patch) | |
tree | 030f69bbe7466eda385f670b351f29f2b8923772 | |
parent | 875f1e92ccafebc8ddebc722f430e5037007b9dc (diff) | |
download | servo-307f2915f2a89e5528a87cee035787326b2751df.tar.gz servo-307f2915f2a89e5528a87cee035787326b2751df.zip |
Move util::persistent_list to layout
-rw-r--r-- | components/layout/floats.rs | 2 | ||||
-rw-r--r-- | components/layout/lib.rs | 1 | ||||
-rw-r--r-- | components/layout/persistent_list.rs (renamed from components/util/persistent_list.rs) | 0 | ||||
-rw-r--r-- | components/util/lib.rs | 1 |
4 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/floats.rs b/components/layout/floats.rs index f74b063b2b8..44704b22230 100644 --- a/components/layout/floats.rs +++ b/components/layout/floats.rs @@ -3,12 +3,12 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use app_units::Au; +use persistent_list::PersistentList; use std::cmp::{max, min}; use std::fmt; use std::i32; use style::computed_values::float; use style::logical_geometry::{LogicalRect, LogicalSize, WritingMode}; -use util::persistent_list::PersistentList; /// The kind of float: left or right. #[derive(Clone, RustcEncodable, Debug, Copy)] diff --git a/components/layout/lib.rs b/components/layout/lib.rs index 431f576ca78..45366f7b669 100644 --- a/components/layout/lib.rs +++ b/components/layout/lib.rs @@ -85,6 +85,7 @@ mod model; mod multicol; mod opaque_node; mod parallel; +mod persistent_list; mod query; mod sequential; mod table; diff --git a/components/util/persistent_list.rs b/components/layout/persistent_list.rs index 210606f1d5d..210606f1d5d 100644 --- a/components/util/persistent_list.rs +++ b/components/layout/persistent_list.rs diff --git a/components/util/lib.rs b/components/util/lib.rs index 40f9d41ddbc..3ad19ea8907 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -58,7 +58,6 @@ pub mod linked_list; #[cfg(feature = "non-geckolib")] pub mod non_geckolib; pub mod opts; -pub mod persistent_list; pub mod prefs; pub mod print_tree; pub mod range; |