mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Rename NewLayoutThreadInfo to LayoutThreadInit
Following the convention of our other init structs.
This commit is contained in:
parent
2058ac0c7f
commit
17ee21bf9d
3 changed files with 6 additions and 6 deletions
|
@ -118,7 +118,7 @@ use net_traits::{
|
|||
};
|
||||
use profile_traits::mem::{self as profile_mem, OpaqueSender, ReportsChan};
|
||||
use profile_traits::time::{self as profile_time, profile, ProfilerCategory};
|
||||
use script_layout_interface::message::{self, Msg, NewLayoutThreadInfo, ReflowGoal};
|
||||
use script_layout_interface::message::{self, Msg, LayoutThreadInit, ReflowGoal};
|
||||
use script_traits::webdriver_msg::WebDriverScriptCommand;
|
||||
use script_traits::CompositorEvent::{
|
||||
CompositionEvent, KeyboardEvent, MouseButtonEvent, MouseMoveEvent, ResizeEvent, TouchEvent,
|
||||
|
@ -1936,7 +1936,7 @@ impl ScriptThread {
|
|||
let layout_pair = unbounded();
|
||||
let layout_chan = layout_pair.0.clone();
|
||||
|
||||
let msg = message::Msg::CreateLayoutThread(NewLayoutThreadInfo {
|
||||
let msg = message::Msg::CreateLayoutThread(LayoutThreadInit {
|
||||
id: new_pipeline_id,
|
||||
url: load_data.url.clone(),
|
||||
is_parent: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue