diff options
Diffstat (limited to 'components/script_traits/lib.rs')
-rw-r--r-- | components/script_traits/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index 4a197e759ff..6c48fd4061e 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -765,6 +765,8 @@ pub enum ConstellationMsg { WebVREvents(Vec<PipelineId>, Vec<WebVREvent>), /// Create a new top level browsing context. NewBrowser(ServoUrl, IpcSender<TopLevelBrowsingContextId>), + /// Close a top level browsing context. + CloseBrowser(TopLevelBrowsingContextId), /// Make browser visible. SelectBrowser(TopLevelBrowsingContextId), } |