diff options
author | bors-servo <release+servo@mozilla.com> | 2014-03-19 12:35:17 -0400 |
---|---|---|
committer | bors-servo <release+servo@mozilla.com> | 2014-03-19 12:35:17 -0400 |
commit | f7aa6e3d9b8bfcc0565624f1094241b3b8658bd8 (patch) | |
tree | 7e7fbd7976c3da12ff463d6ffbeb1a3a336ae7d3 /src/components/main/layout/context.rs | |
parent | caf1ed94468da3c134cc8e8f4a1b934bb353dc19 (diff) | |
parent | a6100563a6e43471ae43fb155113bc2026992f78 (diff) | |
download | servo-f7aa6e3d9b8bfcc0565624f1094241b3b8658bd8.tar.gz servo-f7aa6e3d9b8bfcc0565624f1094241b3b8658bd8.zip |
auto merge of #1934 : larsbergstrom/servo/rust_20140224_squashed, r=jdm
For review only - don't approve yet (need to squash and land submodule updates first).
critic? @metajack
Diffstat (limited to 'src/components/main/layout/context.rs')
-rw-r--r-- | src/components/main/layout/context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/main/layout/context.rs b/src/components/main/layout/context.rs index d2ce78bd3d8..4e3ea7bb404 100644 --- a/src/components/main/layout/context.rs +++ b/src/components/main/layout/context.rs @@ -7,7 +7,6 @@ use css::matching::{ApplicableDeclarationsCache, StyleSharingCandidateCache}; use layout::util::OpaqueNode; -use extra::arc::{Arc, MutexArc}; use extra::url::Url; use geom::size::Size2D; use gfx::font_context::{FontContext, FontContextInfo}; @@ -23,6 +22,7 @@ use std::rt::Runtime; use std::rt::local::Local; use std::rt::task::Task; use style::{ComputedValues, Stylist}; +use sync::{Arc, MutexArc}; #[thread_local] static mut FONT_CONTEXT: *mut FontContext = 0 as *mut FontContext; |