diff options
author | rohan.prinja <rohan.prinja@samsung.com> | 2015-11-14 05:07:55 +0900 |
---|---|---|
committer | Rohan Prinja <rohan.prinja@gmail.com> | 2016-01-10 17:58:13 +0900 |
commit | 1f02c4ebbb7d5ea49051f4391f1418f20c15d7a9 (patch) | |
tree | 7d61e58e746ddca93074ca6bca6849360a098b8c /components/layout/query.rs | |
parent | f00532bab0382d1c24e6086314f26497fb6ffe0f (diff) | |
download | servo-1f02c4ebbb7d5ea49051f4391f1418f20c15d7a9.tar.gz servo-1f02c4ebbb7d5ea49051f4391f1418f20c15d7a9.zip |
task -> thread
Diffstat (limited to 'components/layout/query.rs')
-rw-r--r-- | components/layout/query.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout/query.rs b/components/layout/query.rs index 1b1f0907a4b..ab28e6c49d8 100644 --- a/components/layout/query.rs +++ b/components/layout/query.rs @@ -2,7 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -//! Utilities for querying the layout, as needed by the layout task. +//! Utilities for querying the layout, as needed by the layout thread. use app_units::Au; use construct::ConstructionResult; @@ -12,7 +12,7 @@ use flow; use flow_ref::FlowRef; use fragment::{Fragment, FragmentBorderBoxIterator, SpecificFragmentInfo}; use gfx::display_list::{DisplayItemMetadata, OpaqueNode}; -use layout_task::LayoutTaskData; +use layout_thread::LayoutThreadData; use msg::constellation_msg::ConstellationChan; use opaque_node::OpaqueNodeMethods; use script::layout_interface::{ContentBoxResponse, ContentBoxesResponse, NodeGeometryResponse}; @@ -32,7 +32,7 @@ use util::cursor::Cursor; use util::logical_geometry::WritingMode; use wrapper::{LayoutNode, ThreadSafeLayoutNode}; -pub struct LayoutRPCImpl(pub Arc<Mutex<LayoutTaskData>>); +pub struct LayoutRPCImpl(pub Arc<Mutex<LayoutThreadData>>); impl LayoutRPC for LayoutRPCImpl { |