aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/servo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/style/servo.rs')
-rw-r--r--components/style/servo.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/servo.rs b/components/style/servo.rs
index 10867d4eaf8..ec7044ad4a5 100644
--- a/components/style/servo.rs
+++ b/components/style/servo.rs
@@ -3,14 +3,14 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
use context;
use data;
-use properties::ComputedValues;
+use properties::ServoComputedValues;
use selector_impl::ServoSelectorImpl;
use selector_matching;
use stylesheets;
/// Concrete types for servo Style implementation
pub type Stylesheet = stylesheets::Stylesheet<ServoSelectorImpl>;
-pub type PrivateStyleData = data::PrivateStyleData<ServoSelectorImpl, ComputedValues>;
+pub type PrivateStyleData = data::PrivateStyleData<ServoSelectorImpl, ServoComputedValues>;
pub type Stylist = selector_matching::Stylist<ServoSelectorImpl>;
pub type StylistWrapper = context::StylistWrapper<ServoSelectorImpl>;
pub type SharedStyleContext = context::SharedStyleContext<ServoSelectorImpl>;