diff options
author | Arnaud Marant <arnaudmarant@gmail.com> | 2015-09-12 13:09:41 +0200 |
---|---|---|
committer | Keith Yeung <kungfukeith11@gmail.com> | 2015-12-09 01:58:11 -0800 |
commit | 239f1ae1a7f01b8acdea6cbe327a6b47b775e9cb (patch) | |
tree | f0fddb37fdb6897b3e3993beeafbc171ab88afa2 /components/script/layout_interface.rs | |
parent | 8ba470d79fadf8787eb139af9047b0b4a10fe25c (diff) | |
download | servo-239f1ae1a7f01b8acdea6cbe327a6b47b775e9cb.tar.gz servo-239f1ae1a7f01b8acdea6cbe327a6b47b775e9cb.zip |
fix for Layout memory reporter uses pre-redirect url #6872
Diffstat (limited to 'components/script/layout_interface.rs')
-rw-r--r-- | components/script/layout_interface.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/script/layout_interface.rs b/components/script/layout_interface.rs index 4a78e23e23c..f18c850b077 100644 --- a/components/script/layout_interface.rs +++ b/components/script/layout_interface.rs @@ -86,6 +86,9 @@ pub enum Msg { /// /// This basically exists to keep the script-layout dependency one-way. CreateLayoutTask(NewLayoutTaskInfo), + + /// Set the final Url. + SetFinalUrl(Url), } /// Synchronous messages that script can send to layout. |