diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-02-05 14:45:45 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-02-05 14:45:45 -0700 |
commit | 0d560806f8fd621c2744429ae534e93e1f2563cb (patch) | |
tree | 98df788b8adb6d0fb32b46ac0751aba75afffc33 /components/script/script_task.rs | |
parent | 149053c2a770f919538133350f9398510c998bcf (diff) | |
parent | 6699738cae3a82ae2114897ff5dc0dfdf7c59743 (diff) | |
download | servo-0d560806f8fd621c2744429ae534e93e1f2563cb.tar.gz servo-0d560806f8fd621c2744429ae534e93e1f2563cb.zip |
auto merge of #4853 : jdm/servo/consoleapicall, r=jdm
... to occur in the remote console.
Diffstat (limited to 'components/script/script_task.rs')
-rw-r--r-- | components/script/script_task.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/components/script/script_task.rs b/components/script/script_task.rs index 03451b903a7..8440da0dd2a 100644 --- a/components/script/script_task.rs +++ b/components/script/script_task.rs @@ -379,7 +379,8 @@ impl ScriptTask { resource_task.clone(), storage_task, constellation_chan.clone(), - js_context.clone()); + js_context.clone(), + devtools_chan.clone()); let (devtools_sender, devtools_receiver) = channel(); ScriptTask { @@ -662,7 +663,8 @@ impl ScriptTask { parent_page.resource_task.clone(), parent_page.storage_task.clone(), self.constellation_chan.clone(), - self.js_context.borrow().as_ref().unwrap().clone()) + self.js_context.borrow().as_ref().unwrap().clone(), + self.devtools_chan.clone()) }; parent_page.children.borrow_mut().push(Rc::new(new_page)); } |