aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/servo.rs
diff options
context:
space:
mode:
authorPer Lundberg <perlun@gmail.com>2016-03-26 23:07:44 +0200
committerPer Lundberg <perlun@gmail.com>2016-03-27 10:55:43 +0300
commitc2ad0847138f1dcc3e51123bfbd7734384568697 (patch)
treee27a12810aaf2ef705f805ea67d51b8d430b35c5 /components/style/servo.rs
parentbed91b3334786970c91a47c3bc95889d8675b4d5 (diff)
downloadservo-c2ad0847138f1dcc3e51123bfbd7734384568697.tar.gz
servo-c2ad0847138f1dcc3e51123bfbd7734384568697.zip
ComputedValues is now ServoComputedValues
This is the first part of #10185. More to follow. I have built this locally with both servo and geckolib without errors; let's see if it succeeds on all platforms as well.
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>;