mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Clean up imports after rebasing across submodule mess.
This commit is contained in:
parent
7a3a79dc36
commit
81f84bce17
4 changed files with 9 additions and 7 deletions
|
@ -1,4 +1,5 @@
|
||||||
use color::Color;
|
use color::Color;
|
||||||
|
use font_context::FontContext;
|
||||||
use geometry::Au;
|
use geometry::Au;
|
||||||
use render_context::RenderContext;
|
use render_context::RenderContext;
|
||||||
use util::range::Range;
|
use util::range::Range;
|
||||||
|
|
|
@ -3,8 +3,8 @@ extern mod core_graphics;
|
||||||
extern mod core_text;
|
extern mod core_text;
|
||||||
|
|
||||||
use font_context::QuartzFontContextHandle;
|
use font_context::QuartzFontContextHandle;
|
||||||
use gfx::au;
|
use geometry::Au;
|
||||||
use gfx::font::{
|
use gfx_font::{
|
||||||
CSSFontWeight,
|
CSSFontWeight,
|
||||||
FontHandleMethods,
|
FontHandleMethods,
|
||||||
FontMetrics,
|
FontMetrics,
|
||||||
|
|
|
@ -91,3 +91,4 @@ pub mod util {
|
||||||
pub mod vec;
|
pub mod vec;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
use gfx_font = font;
|
|
@ -2,15 +2,15 @@ extern mod harfbuzz;
|
||||||
|
|
||||||
use geom::Point2D;
|
use geom::Point2D;
|
||||||
|
|
||||||
use gfx::au;
|
use au = geometry;
|
||||||
use gfx::{
|
use au::Au;
|
||||||
Au,
|
|
||||||
|
use font::{
|
||||||
Font,
|
Font,
|
||||||
|
FontTableTag,
|
||||||
};
|
};
|
||||||
use gfx::font::FontTableTag;
|
|
||||||
|
|
||||||
use glyph::{GlyphStore, GlyphIndex, GlyphData};
|
use glyph::{GlyphStore, GlyphIndex, GlyphData};
|
||||||
use servo_gfx_font::Font;
|
|
||||||
|
|
||||||
use core::libc::types::common::c99::int32_t;
|
use core::libc::types::common::c99::int32_t;
|
||||||
use core::libc::{c_uint, c_int, c_void, c_char};
|
use core::libc::{c_uint, c_int, c_void, c_char};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue