WebDriver: Remove unused Session::get_window_handles()

With all the implementations being in the Session class, there should
be no reason to expose this to the outside world anyway.
This commit is contained in:
Linus Groh 2022-10-19 19:43:37 +02:00
commit 7812b3c130
Notes: sideshowbarker 2024-07-17 05:20:44 +09:00

View file

@ -33,7 +33,6 @@ public:
i32 id; i32 id;
}; };
HashMap<String, NonnullOwnPtr<Window>>& get_window_handles() { return m_windows; }
Optional<Window*> get_window_object() { return m_windows.get(m_current_window_handle); } Optional<Window*> get_window_object() { return m_windows.get(m_current_window_handle); }
String const& current_window_handle() { return m_current_window_handle; } String const& current_window_handle() { return m_current_window_handle; }