diff options
author | Michael Partheil <michael.partheil@gmail.com> | 2017-07-18 18:48:57 +0200 |
---|---|---|
committer | Michael Partheil <michael.partheil@gmail.com> | 2017-07-19 09:29:05 +0200 |
commit | b07ebbae6b92bc510a6ddbf24676498f86bf5a8a (patch) | |
tree | d2eab40052ec2062ae19bd4163feec66f43aa112 /components/layout/inline.rs | |
parent | d403f404382c66485d9744787ce021556be59d6c (diff) | |
download | servo-b07ebbae6b92bc510a6ddbf24676498f86bf5a8a.tar.gz servo-b07ebbae6b92bc510a6ddbf24676498f86bf5a8a.zip |
Replace all uses of the style::stylearc alias with servo_arc.
The alias is left there temporarilly and will be removed completely in a later commit where
also components/style/gecko/generated/structs_{debug|release}.rs are re-generated (they still
use the old alias).
Diffstat (limited to 'components/layout/inline.rs')
-rw-r--r-- | components/layout/inline.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/layout/inline.rs b/components/layout/inline.rs index 9228c21a7ba..d5813d9bea2 100644 --- a/components/layout/inline.rs +++ b/components/layout/inline.rs @@ -4,7 +4,7 @@ #![deny(unsafe_code)] -use StyleArc; +use ServoArc; use app_units::{Au, MIN_AU}; use block::AbsoluteAssignBSizesTraversal; use context::LayoutContext; @@ -1665,7 +1665,7 @@ impl Flow for InlineFlow { self.build_display_list_for_inline(state); } - fn repair_style(&mut self, _: &StyleArc<ComputedValues>) {} + fn repair_style(&mut self, _: &ServoArc<ComputedValues>) {} fn compute_overflow(&self) -> Overflow { let mut overflow = Overflow::new(); @@ -1754,8 +1754,8 @@ impl fmt::Debug for InlineFlow { #[derive(Clone)] pub struct InlineFragmentNodeInfo { pub address: OpaqueNode, - pub style: StyleArc<ComputedValues>, - pub selected_style: StyleArc<ComputedValues>, + pub style: ServoArc<ComputedValues>, + pub selected_style: ServoArc<ComputedValues>, pub pseudo: PseudoElementType<()>, pub flags: InlineFragmentNodeFlags, } |