mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:57:43 +00:00
LibWeb: Implement Navigable::initialize_navigable()
This commit is contained in:
parent
74ab8ec4f0
commit
9a19bdbfcf
2 changed files with 29 additions and 0 deletions
|
@ -21,6 +21,8 @@ class Navigable : public JS::Cell {
|
|||
public:
|
||||
virtual ~Navigable() override;
|
||||
|
||||
ErrorOr<void> initialize_navigable(JS::NonnullGCPtr<DocumentState> document_state, JS::GCPtr<Navigable> parent);
|
||||
|
||||
String const& id() const { return m_id; };
|
||||
JS::GCPtr<Navigable> parent() const { return m_parent; };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue