diff --git a/components/constellation/constellation.rs b/components/constellation/constellation.rs
index 8f32fa62ba9..f5b40322c40 100644
--- a/components/constellation/constellation.rs
+++ b/components/constellation/constellation.rs
@@ -1242,12 +1242,6 @@ where
FromCompositorMsg::Exit => {
self.handle_exit();
},
- FromCompositorMsg::GetBrowsingContext(pipeline_id, response_sender) => {
- self.handle_get_browsing_context(pipeline_id, response_sender);
- },
- FromCompositorMsg::GetPipeline(browsing_context_id, response_sender) => {
- self.handle_get_pipeline(browsing_context_id, response_sender);
- },
FromCompositorMsg::GetFocusTopLevelBrowsingContext(resp_chan) => {
let _ = resp_chan.send(self.webviews.focused_webview().map(|(id, _)| id));
},
@@ -4192,49 +4186,6 @@ where
}
}
- #[cfg_attr(
- feature = "tracing",
- tracing::instrument(skip_all, fields(servo_profiling = true), level = "trace")
- )]
- fn handle_get_pipeline(
- &mut self,
- browsing_context_id: BrowsingContextId,
- response_sender: IpcSender