diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2022-04-01 20:58:27 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-04-01 21:24:45 +0100 |
commit | 086969277e74d8ba065bf8145d3aeb0dec0bfee5 (patch) | |
tree | 02b3699a66735ef806d9b46353491f18f8e4e7b4 /Userland/Applications/Browser/History.h | |
parent | 0376c127f6e98e03607700d0b3f5154b7014b2f8 (diff) | |
download | serenity-086969277e74d8ba065bf8145d3aeb0dec0bfee5.zip |
Everywhere: Run clang-format
Diffstat (limited to 'Userland/Applications/Browser/History.h')
-rw-r--r-- | Userland/Applications/Browser/History.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Userland/Applications/Browser/History.h b/Userland/Applications/Browser/History.h index e7891b29a1..05afcd8532 100644 --- a/Userland/Applications/Browser/History.h +++ b/Userland/Applications/Browser/History.h @@ -19,12 +19,12 @@ public: }; void dump() const; - void push(const URL& url, const String& title); - void update_title(const String& title); + void push(const URL& url, String const& title); + void update_title(String const& title); URLTitlePair current() const; - const Vector<StringView> get_back_title_history(); - const Vector<StringView> get_forward_title_history(); + Vector<StringView> const get_back_title_history(); + Vector<StringView> const get_forward_title_history(); void go_back(int steps = 1); void go_forward(int steps = 1); |