diff options
author | Linus Groh <mail@linusgroh.de> | 2021-05-29 01:12:24 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-05-29 01:12:24 +0100 |
commit | 507c5b6248c12cbdc116f6479a449116e4ae0cd8 (patch) | |
tree | b988d5ff473d5888723e5ee848c52dd64e7d2b53 /Userland/Applications | |
parent | 301eb998c6f98a4cfa0022d0f920f4398d1e97f4 (diff) | |
download | serenity-507c5b6248c12cbdc116f6479a449116e4ae0cd8.zip |
Browser: Remove redundant parameter names from Tab::on_{g,s}et_cookie
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/Browser/Tab.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/Browser/Tab.h b/Userland/Applications/Browser/Tab.h index 6561145a91..7bfd10d60e 100644 --- a/Userland/Applications/Browser/Tab.h +++ b/Userland/Applications/Browser/Tab.h @@ -59,8 +59,8 @@ public: Function<void(const URL&)> on_tab_open_request; Function<void(Tab&)> on_tab_close_request; Function<void(const Gfx::Bitmap&)> on_favicon_change; - Function<String(const URL& url, Web::Cookie::Source source)> on_get_cookie; - Function<void(const URL& url, const Web::Cookie::ParsedCookie& cookie, Web::Cookie::Source source)> on_set_cookie; + Function<String(const URL&, Web::Cookie::Source source)> on_get_cookie; + Function<void(const URL&, const Web::Cookie::ParsedCookie& cookie, Web::Cookie::Source source)> on_set_cookie; Function<void()> on_dump_cookies; const String& title() const { return m_title; } |