From 8ecd2debc7c0409dc3d863201b05206de51a2c5a Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Tue, 24 May 2016 10:18:27 +0200 Subject: [PATCH] Remove the unused ScriptControlChan type. --- components/script_traits/lib.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index 7e3ebc9541d..2dee02fec59 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -338,10 +338,6 @@ pub struct InitialScriptState { pub content_process_shutdown_chan: IpcSender<()>, } -/// Encapsulates external communication with the script thread. -#[derive(Clone, Deserialize, Serialize)] -pub struct ScriptControlChan(pub IpcSender); - /// This trait allows creating a `ScriptThread` without depending on the `script` /// crate. pub trait ScriptThreadFactory {