diff options
Diffstat (limited to 'src/components/msg/constellation.rs')
-rw-r--r-- | src/components/msg/constellation.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/msg/constellation.rs b/src/components/msg/constellation.rs index b0b97ba528a..aa6442a525d 100644 --- a/src/components/msg/constellation.rs +++ b/src/components/msg/constellation.rs @@ -27,8 +27,13 @@ impl ConstellationChan { pub enum Msg { LoadUrlMsg(Url), + NavigateMsg(NavigationDirection), ExitMsg(Chan<()>), RendererReadyMsg(uint), TokenSurrenderMsg(~CompositorToken), } +pub enum NavigationDirection { + Forward, + Back, +} |