diff options
Diffstat (limited to 'Userland/Services/WebContent/PageHost.h')
-rw-r--r-- | Userland/Services/WebContent/PageHost.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Services/WebContent/PageHost.h b/Userland/Services/WebContent/PageHost.h index ef4b48208a..1db072ede9 100644 --- a/Userland/Services/WebContent/PageHost.h +++ b/Userland/Services/WebContent/PageHost.h @@ -72,6 +72,9 @@ private: RefPtr<Gfx::PaletteImpl> m_palette_impl; Gfx::IntRect m_screen_rect; bool m_should_show_line_box_borders { false }; + + RefPtr<Core::Timer> m_invalidation_coalescing_timer; + Gfx::IntRect m_invalidation_rect; }; } |