mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
LibWeb: Add non-const session_history_entries getter in traversable
This commit is contained in:
parent
51d64bdaec
commit
6660eb3e1b
Notes:
sideshowbarker
2024-07-16 22:51:10 +09:00
Author: https://github.com/kalenikaliaksandr
Commit: 6660eb3e1b
Pull-request: https://github.com/SerenityOS/serenity/pull/18541
Reviewed-by: https://github.com/awesomekling
1 changed files with 1 additions and 0 deletions
|
@ -25,6 +25,7 @@ public:
|
|||
bool is_top_level_traversable() const;
|
||||
|
||||
int current_session_history_step() const { return m_current_session_history_step; };
|
||||
Vector<JS::NonnullGCPtr<SessionHistoryEntry>>& session_history_entries() { return m_session_history_entries; };
|
||||
Vector<JS::NonnullGCPtr<SessionHistoryEntry>> const& session_history_entries() const { return m_session_history_entries; };
|
||||
bool running_nested_apply_history_step() const { return m_running_nested_apply_history_step; };
|
||||
VisibilityState system_visibility_state() const { return m_system_visibility_state; };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue