1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:58:11 +00:00

LibWeb: Remove unused navigation methods in BrowsingContext

This commit is contained in:
Aliaksandr Kalenik 2023-08-25 00:25:13 +02:00 committed by Andreas Kling
parent c0c542d495
commit 24b3e315a0
4 changed files with 0 additions and 439 deletions

View file

@ -22,19 +22,6 @@ public:
virtual HTML::WindowProxy* window_proxy() override;
virtual HTML::WindowProxy const* window_proxy() const override;
virtual WebIDL::ExceptionOr<void> navigate(
JS::NonnullGCPtr<Fetch::Infrastructure::Request>,
BrowsingContext&,
bool,
HistoryHandlingBehavior,
Optional<PolicyContainer>,
DeprecatedString,
Optional<String>,
Function<void(JS::NonnullGCPtr<Fetch::Infrastructure::Response>)>) override
{
return {};
}
virtual String const& window_handle() const override { return m_window_handle; }
virtual void set_window_handle(String handle) override { m_window_handle = handle; }