Remove unused arguments from LoadComplete and LoadCompleteMsg

This commit is contained in:
Manish Goregaokar 2014-11-14 02:14:00 +05:30
parent d5f1bb2df5
commit cdddf6465c
5 changed files with 9 additions and 10 deletions

View file

@ -434,9 +434,9 @@ impl<LTF: LayoutTaskFactory, STF: ScriptTaskFactory> Constellation<LTF, STF> {
}
// A page loaded through one of several methods above has completed all parsing,
// script, and reflow messages have been sent.
LoadCompleteMsg(pipeline_id, url) => {
LoadCompleteMsg => {
debug!("constellation got load complete message");
self.compositor_proxy.send(LoadComplete(pipeline_id, url));
self.compositor_proxy.send(LoadComplete);
}
// Handle a forward or back request
NavigateMsg(direction) => {