diff options
author | Roman Zaynetdinov <roman.zaynetdinov@lekane.com> | 2016-12-25 13:05:00 +0200 |
---|---|---|
committer | Roman Zaynetdinov <roman.zaynetdinov@lekane.com> | 2016-12-25 13:06:31 +0200 |
commit | 95552c401964d079912b79cc8bc1275e4ab11cbe (patch) | |
tree | 0baa78c0dc3c71320939b24947206365ed9002da /components/script_traits/lib.rs | |
parent | cb5ceec15060d597470f56ce1eb2e68153583fb9 (diff) | |
download | servo-95552c401964d079912b79cc8bc1275e4ab11cbe.tar.gz servo-95552c401964d079912b79cc8bc1275e4ab11cbe.zip |
Remove unused boolean argument from ContellationMsg's GetPipeline
Diffstat (limited to 'components/script_traits/lib.rs')
-rw-r--r-- | components/script_traits/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index 0494f44c70d..56d4406f1ce 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -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), |