/* * Copyright (c) 2021, Luke Wilde * Copyright (c) 2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Web::HTML { class History final : public Bindings::PlatformObject { WEB_PLATFORM_OBJECT(History, Bindings::PlatformObject); JS_DECLARE_ALLOCATOR(History); public: [[nodiscard]] static JS::NonnullGCPtr create(JS::Realm&, DOM::Document&); virtual ~History() override; WebIDL::ExceptionOr push_state(JS::Value data, String const& unused, Optional const& url = {}); WebIDL::ExceptionOr replace_state(JS::Value data, String const& unused, Optional const& url = {}); WebIDL::ExceptionOr go(long delta); WebIDL::ExceptionOr back(); WebIDL::ExceptionOr forward(); WebIDL::ExceptionOr length() const; u64 m_index { 0 }; u64 m_length { 0 }; private: History(JS::Realm&, DOM::Document&); virtual void initialize(JS::Realm&) override; virtual void visit_edges(Cell::Visitor&) override; WebIDL::ExceptionOr shared_history_push_replace_state(JS::Value data, Optional const& url, HistoryHandlingBehavior); JS::NonnullGCPtr m_associated_document; }; bool can_have_its_url_rewritten(DOM::Document const& document, AK::URL const& target_url); }