mirror of
https://github.com/servo/servo.git
synced 2025-06-08 00:23:30 +00:00
Remove typedefs DevtoolsControlChan and DevtoolsControlPort. Fixes #6923.
This commit is contained in:
parent
95269bba39
commit
8c3cf90e6e
4 changed files with 7 additions and 10 deletions
|
@ -53,7 +53,7 @@ use timers::TimerId;
|
|||
use devtools;
|
||||
use webdriver_handlers;
|
||||
|
||||
use devtools_traits::{DevtoolsControlPort, DevtoolsPageInfo, DevtoolScriptControlMsg};
|
||||
use devtools_traits::{DevtoolsPageInfo, DevtoolScriptControlMsg};
|
||||
use devtools_traits::{ScriptToDevtoolsControlMsg, TimelineMarker, TimelineMarkerType};
|
||||
use devtools_traits::{TracingMetadata};
|
||||
use script_traits::CompositorEvent::{MouseDownEvent, MouseUpEvent};
|
||||
|
@ -327,7 +327,7 @@ pub struct ScriptTask {
|
|||
devtools_chan: Option<IpcSender<ScriptToDevtoolsControlMsg>>,
|
||||
/// For receiving commands from an optional devtools server. Will be ignored if
|
||||
/// no such server exists.
|
||||
devtools_port: DevtoolsControlPort,
|
||||
devtools_port: Receiver<DevtoolScriptControlMsg>,
|
||||
devtools_sender: IpcSender<DevtoolScriptControlMsg>,
|
||||
/// For sending timeline markers. Will be ignored if
|
||||
/// no devtools server
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue