mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
LibWeb: Prefer GCPtr<T> over Optional<NonnullGCPtr<T>>
This commit is contained in:
committed by
Andreas Kling
parent
80658743d3
commit
70e2f51674
Notes:
sideshowbarker
2024-07-17 16:23:55 +09:00
Author: https://github.com/shannonbooth Commit: https://github.com/SerenityOS/serenity/commit/70e2f51674 Pull-request: https://github.com/SerenityOS/serenity/pull/23877 Reviewed-by: https://github.com/kennethmyhra ✅
@@ -109,7 +109,7 @@ public:
|
||||
// Abstract Operations
|
||||
bool has_entries_and_events_disabled() const;
|
||||
i64 get_the_navigation_api_entry_index(SessionHistoryEntry const&) const;
|
||||
void abort_the_ongoing_navigation(Optional<JS::NonnullGCPtr<WebIDL::DOMException>> error = {});
|
||||
void abort_the_ongoing_navigation(JS::GCPtr<WebIDL::DOMException> error = {});
|
||||
bool fire_a_traverse_navigate_event(JS::NonnullGCPtr<SessionHistoryEntry> destination_she, UserNavigationInvolvement = UserNavigationInvolvement::None);
|
||||
bool fire_a_push_replace_reload_navigate_event(
|
||||
Bindings::NavigationType,
|
||||
|
||||
Reference in New Issue
Block a user