diff options
author | MacDue <macdue@dueutil.tech> | 2022-12-06 20:27:44 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-12-07 11:48:27 +0100 |
commit | 7be0b27dd3cd7185c1b8dc52747c50aad479bc6a (patch) | |
tree | 30d42673a64ebb4a6274760e0016f78d6fa91fca /Userland/Libraries/LibWeb/HTML/BrowsingContext.h | |
parent | bbc149ebb935532c9382278ed98cf9fe8a616422 (diff) | |
download | serenity-7be0b27dd3cd7185c1b8dc52747c50aad479bc6a.zip |
Meta+Userland: Pass Gfx::IntPoint by value
This is just two ints or 8 bytes or the size of the reference on
x86_64 or AArch64.
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/BrowsingContext.h')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/BrowsingContext.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/BrowsingContext.h b/Userland/Libraries/LibWeb/HTML/BrowsingContext.h index 9af4d67659..441aedc9be 100644 --- a/Userland/Libraries/LibWeb/HTML/BrowsingContext.h +++ b/Userland/Libraries/LibWeb/HTML/BrowsingContext.h @@ -140,7 +140,7 @@ public: void set_needs_display(); void set_needs_display(Gfx::IntRect const&); - Gfx::IntPoint const& viewport_scroll_offset() const { return m_viewport_scroll_offset; } + Gfx::IntPoint viewport_scroll_offset() const { return m_viewport_scroll_offset; } Gfx::IntRect viewport_rect() const { return { m_viewport_scroll_offset, m_size }; } void set_viewport_rect(Gfx::IntRect const&); @@ -150,7 +150,7 @@ public: Web::EventHandler& event_handler() { return m_event_handler; } Web::EventHandler const& event_handler() const { return m_event_handler; } - void scroll_to(Gfx::IntPoint const&); + void scroll_to(Gfx::IntPoint); void scroll_to_anchor(DeprecatedString const&); BrowsingContext& top_level_browsing_context() @@ -183,7 +183,7 @@ public: HTML::BrowsingContextContainer* container() { return m_container; } HTML::BrowsingContextContainer const* container() const { return m_container; } - Gfx::IntPoint to_top_level_position(Gfx::IntPoint const&); + Gfx::IntPoint to_top_level_position(Gfx::IntPoint); Gfx::IntRect to_top_level_rect(Gfx::IntRect const&); DOM::Position const& cursor_position() const { return m_cursor_position; } |