diff options
author | Manish Goregaokar <manishearth@gmail.com> | 2017-07-17 11:41:52 -0700 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2017-07-17 18:02:25 -0700 |
commit | 808b1f509b7e1524cfc49f7cc1fc89fd5f8e5737 (patch) | |
tree | b6f4e04c1d0a4e427b2360d60abb02eea8e5aec8 /components/layout/model.rs | |
parent | 04b0ae64f2fe606744142e353388749fe283a8ad (diff) | |
download | servo-808b1f509b7e1524cfc49f7cc1fc89fd5f8e5737.tar.gz servo-808b1f509b7e1524cfc49f7cc1fc89fd5f8e5737.zip |
stylo: Use ComputedValuesInner instead of ComputedValues when we don't need it
Diffstat (limited to 'components/layout/model.rs')
-rw-r--r-- | components/layout/model.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout/model.rs b/components/layout/model.rs index 7f564a599ab..c96c3bdaaf5 100644 --- a/components/layout/model.rs +++ b/components/layout/model.rs @@ -13,7 +13,7 @@ use std::cmp::{max, min}; use std::fmt; use style::computed_values::transform::ComputedMatrix; use style::logical_geometry::{LogicalMargin, WritingMode}; -use style::properties::ServoComputedValues; +use style::properties::ComputedValues; use style::values::computed::{BorderCornerRadius, LengthOrPercentageOrAuto}; use style::values::computed::{LengthOrPercentage, LengthOrPercentageOrNone}; @@ -481,7 +481,7 @@ pub fn specified_border_radius( } #[inline] -pub fn padding_from_style(style: &ServoComputedValues, +pub fn padding_from_style(style: &ComputedValues, containing_block_inline_size: Au, writing_mode: WritingMode) -> LogicalMargin<Au> { @@ -498,7 +498,7 @@ pub fn padding_from_style(style: &ServoComputedValues, /// /// This is used when calculating intrinsic inline sizes. #[inline] -pub fn specified_margin_from_style(style: &ServoComputedValues, +pub fn specified_margin_from_style(style: &ComputedValues, writing_mode: WritingMode) -> LogicalMargin<Au> { let margin_style = style.get_margin(); LogicalMargin::from_physical(writing_mode, SideOffsets2D::new( |