diff options
Diffstat (limited to 'components/compositing/compositor_thread.rs')
-rw-r--r-- | components/compositing/compositor_thread.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/compositing/compositor_thread.rs b/components/compositing/compositor_thread.rs index 526f65a5d12..eb0020c366d 100644 --- a/components/compositing/compositor_thread.rs +++ b/components/compositing/compositor_thread.rs @@ -195,8 +195,8 @@ pub enum Msg { SetFrameTree(SendableFrameTree, IpcSender<()>, Sender<ConstellationMsg>), /// The load of a page has begun: (can go back, can go forward). LoadStart(bool, bool), - /// The load of a page has completed: (can go back, can go forward). - LoadComplete(bool, bool), + /// The load of a page has completed: (can go back, can go forward, is root frame). + LoadComplete(bool, bool, bool), /// We hit the delayed composition timeout. (See `delayed_composition.rs`.) DelayedCompositionTimeout(u64), /// Composite. |