mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Separate script and layout messages, issue #8843
This commit is contained in:
parent
d2e7fd8221
commit
655268d111
11 changed files with 80 additions and 27 deletions
|
@ -9,7 +9,7 @@ use gfx::display_list::OpaqueNode;
|
|||
use incremental::{self, RestyleDamage};
|
||||
use msg::constellation_msg::{AnimationState, ConstellationChan, PipelineId};
|
||||
use script::layout_interface::Animation;
|
||||
use script_traits::ScriptMsg as ConstellationMsg;
|
||||
use script_traits::LayoutMsg as ConstellationMsg;
|
||||
use std::collections::HashMap;
|
||||
use std::collections::hash_map::Entry;
|
||||
use std::sync::mpsc::{Sender, Receiver};
|
||||
|
|
|
@ -51,8 +51,8 @@ use script::layout_interface::{LayoutRPC, OffsetParentResponse};
|
|||
use script::layout_interface::{Msg, NewLayoutTaskInfo, Reflow, ReflowGoal, ReflowQueryType};
|
||||
use script::layout_interface::{ScriptLayoutChan, ScriptReflow};
|
||||
use script::reporter::CSSErrorReporter;
|
||||
use script_traits::ScriptMsg as ConstellationMsg;
|
||||
use script_traits::{ConstellationControlMsg, LayoutControlMsg, OpaqueScriptLayoutChannel};
|
||||
use script_traits::ConstellationControlMsg;
|
||||
use script_traits::{LayoutControlMsg, LayoutMsg as ConstellationMsg, OpaqueScriptLayoutChannel};
|
||||
use sequential;
|
||||
use serde_json;
|
||||
use std::borrow::ToOwned;
|
||||
|
|
|
@ -18,7 +18,7 @@ use opaque_node::OpaqueNodeMethods;
|
|||
use script::layout_interface::{ContentBoxResponse, ContentBoxesResponse, NodeGeometryResponse};
|
||||
use script::layout_interface::{HitTestResponse, LayoutRPC, MouseOverResponse, OffsetParentResponse};
|
||||
use script::layout_interface::{ResolvedStyleResponse, ScriptLayoutChan};
|
||||
use script_traits::ScriptMsg as ConstellationMsg;
|
||||
use script_traits::LayoutMsg as ConstellationMsg;
|
||||
use selectors::parser::PseudoElement;
|
||||
use sequential;
|
||||
use std::ops::Deref;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue