diff options
author | Josh Matthews <josh@joshmatthews.net> | 2021-10-16 11:10:25 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2021-10-18 09:58:32 -0400 |
commit | 6b50d7025c8839b834dcaa3167c0654f7d603b1f (patch) | |
tree | a5e17d082b39ed8235d03cbb5f35df471fad3fc5 /components/compositing/lib.rs | |
parent | 74f1eb199e67e82ff713f77f7803f02a25966628 (diff) | |
download | servo-6b50d7025c8839b834dcaa3167c0654f7d603b1f.tar.gz servo-6b50d7025c8839b834dcaa3167c0654f7d603b1f.zip |
Create initial browser id for compositor on startup.
Diffstat (limited to 'components/compositing/lib.rs')
-rw-r--r-- | components/compositing/lib.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/components/compositing/lib.rs b/components/compositing/lib.rs index dbb835e8bbe..4f29cfc1662 100644 --- a/components/compositing/lib.rs +++ b/components/compositing/lib.rs @@ -76,11 +76,7 @@ pub enum ConstellationMsg { /// Request to traverse the joint session history of the provided browsing context. TraverseHistory(TopLevelBrowsingContextId, TraversalDirection), /// Inform the constellation of a window being resized. - WindowSize( - Option<TopLevelBrowsingContextId>, - WindowSizeData, - WindowSizeType, - ), + WindowSize(TopLevelBrowsingContextId, WindowSizeData, WindowSizeType), /// Requests that the constellation instruct layout to begin a new tick of the animation. TickAnimation(PipelineId, AnimationTickType), /// Dispatch a webdriver command |