1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:07:36 +00:00

LibWeb: Rename frame_did_set_viewport_rect() => browsing_context_*()

Names are still catching up after the Frame => BrowsingContext rename.
This commit is contained in:
Andreas Kling 2021-09-08 11:12:22 +02:00
parent 9d9500989a
commit 3a7e26ef28
4 changed files with 7 additions and 6 deletions

View file

@ -27,7 +27,8 @@ public:
bool renders_as_alt_text() const;
private:
virtual void frame_did_set_viewport_rect(const Gfx::IntRect&) final;
// ^BrowsingContext::ViewportClient
virtual void browsing_context_did_set_viewport_rect(Gfx::IntRect const&) final;
int preferred_width() const;
int preferred_height() const;