Remove unused boolean argument from ContellationMsg's GetPipeline

This commit is contained in:
Roman Zaynetdinov 2016-12-25 13:05:00 +02:00
parent cb5ceec150
commit 95552c4019
3 changed files with 5 additions and 5 deletions

View file

@ -686,7 +686,7 @@ pub enum ConstellationMsg {
/// Request that the constellation send the current pipeline id for the provided frame
/// id, or for the root frame if this is None, over a provided channel.
/// Also returns a boolean saying whether the document has finished loading or not.
GetPipeline(Option<FrameId>, IpcSender<Option<(PipelineId, bool)>>),
GetPipeline(Option<FrameId>, IpcSender<Option<PipelineId>>),
/// Requests that the constellation inform the compositor of the title of the pipeline
/// immediately.
GetPipelineTitle(PipelineId),