summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser/History.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Applications/Browser/History.h')
-rw-r--r--Userland/Applications/Browser/History.h8
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);