diff options
author | Paul Rouget <me@paulrouget.com> | 2019-12-06 10:10:43 +0100 |
---|---|---|
committer | Paul Rouget <me@paulrouget.com> | 2019-12-06 10:10:43 +0100 |
commit | b3b886e837792bc130d3514bef4d8619aed4c41d (patch) | |
tree | 5b5285bf4c3f5fab6d3e80b1d6b64933b5a18d6b /components/script/script_thread.rs | |
parent | 6cd42bdcfbcf329ff5805a56988a9b5eeb8e0e22 (diff) | |
download | servo-b3b886e837792bc130d3514bef4d8619aed4c41d.tar.gz servo-b3b886e837792bc130d3514bef4d8619aed4c41d.zip |
devtools: save and send cached messages
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index c01ad08220c..1373896cdff 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -1991,9 +1991,6 @@ impl ScriptThread { DevtoolScriptControlMsg::GetLayout(id, node_id, reply) => { devtools::handle_get_layout(&*documents, id, node_id, reply) }, - DevtoolScriptControlMsg::GetCachedMessages(id, message_types, reply) => { - devtools::handle_get_cached_messages(id, message_types, reply) - }, DevtoolScriptControlMsg::ModifyAttribute(id, node_id, modifications) => { devtools::handle_modify_attribute(&*documents, id, node_id, modifications) }, |