mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
f87041bf3a
Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
49 lines
1.9 KiB
C++
49 lines
1.9 KiB
C++
/*
|
|
* Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
#include <LibWeb/HTML/NavigationType.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationtransition
|
|
class NavigationTransition : public Bindings::PlatformObject {
|
|
WEB_PLATFORM_OBJECT(NavigationTransition, Bindings::PlatformObject);
|
|
GC_DECLARE_ALLOCATOR(NavigationTransition);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<NavigationTransition> create(JS::Realm&, Bindings::NavigationType, GC::Ref<NavigationHistoryEntry>, GC::Ref<WebIDL::Promise>);
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationtransition-navigationtype
|
|
Bindings::NavigationType navigation_type() const { return m_navigation_type; }
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationtransition-from
|
|
GC::Ref<NavigationHistoryEntry> from() const { return m_from_entry; }
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationtransition-finished
|
|
GC::Ref<WebIDL::Promise> finished() const { return m_finished_promise; }
|
|
|
|
virtual ~NavigationTransition() override;
|
|
|
|
private:
|
|
NavigationTransition(JS::Realm&, Bindings::NavigationType, GC::Ref<NavigationHistoryEntry>, GC::Ref<WebIDL::Promise>);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
virtual void visit_edges(JS::Cell::Visitor&) override;
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigationtransition-navigationtype
|
|
Bindings::NavigationType m_navigation_type;
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigationtransition-from
|
|
GC::Ref<NavigationHistoryEntry> m_from_entry;
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-navigationtransition-finished
|
|
GC::Ref<WebIDL::Promise> m_finished_promise;
|
|
};
|
|
|
|
}
|