From 789807b7b09e0742a197c98efd2f81b85b751a57 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Tue, 19 Jul 2016 20:29:22 +0200 Subject: Remove the ComputedValue traits and style_struct_traits --- components/layout/flow.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'components/layout/flow.rs') diff --git a/components/layout/flow.rs b/components/layout/flow.rs index c9c3e2d9054..7be81faa0d6 100644 --- a/components/layout/flow.rs +++ b/components/layout/flow.rs @@ -52,7 +52,7 @@ use std::{fmt, mem, raw}; use style::computed_values::{clear, display, empty_cells, float, position, overflow_x, text_align}; use style::dom::TRestyleDamage; use style::logical_geometry::{LogicalRect, LogicalSize, WritingMode}; -use style::properties::{self, ComputedValues, ServoComputedValues}; +use style::properties::{self, ServoComputedValues}; use style::servo::SharedStyleContext; use style::values::computed::LengthOrPercentageOrAuto; use table::{ColumnComputedInlineSize, ColumnIntrinsicInlineSize, TableFlow}; -- cgit v1.2.3 From 6d0e48f6cc91a3200911e00f3719d8cb7ff6b0c4 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Wed, 20 Jul 2016 00:30:37 +0200 Subject: Remove some type aliases that are now just re-exports. --- components/layout/flow.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'components/layout/flow.rs') diff --git a/components/layout/flow.rs b/components/layout/flow.rs index 7be81faa0d6..29102690a4d 100644 --- a/components/layout/flow.rs +++ b/components/layout/flow.rs @@ -50,10 +50,10 @@ use std::sync::Arc; use std::sync::atomic::Ordering; use std::{fmt, mem, raw}; use style::computed_values::{clear, display, empty_cells, float, position, overflow_x, text_align}; +use style::context::SharedStyleContext; use style::dom::TRestyleDamage; use style::logical_geometry::{LogicalRect, LogicalSize, WritingMode}; use style::properties::{self, ServoComputedValues}; -use style::servo::SharedStyleContext; use style::values::computed::LengthOrPercentageOrAuto; use table::{ColumnComputedInlineSize, ColumnIntrinsicInlineSize, TableFlow}; use table_caption::TableCaptionFlow; -- cgit v1.2.3