1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:57:45 +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

@ -30,7 +30,7 @@ public:
class ViewportClient {
public:
virtual ~ViewportClient() { }
virtual void frame_did_set_viewport_rect(Gfx::IntRect const&) = 0;
virtual void browsing_context_did_set_viewport_rect(Gfx::IntRect const&) = 0;
};
void register_viewport_client(ViewportClient&);
void unregister_viewport_client(ViewportClient&);