servo: Merge #9635 - Move util::bezier to style (from nox:mv-bezier); r=jdm

Source-Repo: https://github.com/servo/servo
Source-Revision: 024d106f78e0e37adc3ddc24a56a0597c2bacf98

--HG--
rename : servo/components/util/bezier.rs => servo/components/style/bezier.rs
This commit is contained in:
Anthony Ramine 2016-02-15 07:18:27 +05:01
parent c276116138
commit 1134f62cd5
4 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
use app_units::Au;
use bezier::Bezier;
use cssparser::{Color, RGBA};
use dom::{OpaqueNode, TRestyleDamage};
use euclid::point::Point2D;
@ -29,7 +30,6 @@ use std::iter::repeat;
use std::sync::mpsc::Sender;
use std::sync::{Arc, Mutex};
use time;
use util::bezier::Bezier;
use values::CSSFloat;
use values::computed::{Angle, LengthOrPercentageOrAuto, LengthOrPercentageOrNone};
use values::computed::{CalcLengthOrPercentage, Length, LengthOrPercentage, Time};

View File

@ -47,6 +47,7 @@ extern crate util;
pub mod animation;
pub mod attr;
pub mod bezier;
pub mod context;
mod custom_properties;
pub mod data;

View File

@ -49,7 +49,6 @@ extern crate uuid;
use std::sync::Arc;
pub mod bezier;
pub mod cache;
pub mod cursor;
pub mod debug_utils;