SessionHistoryEntry.cpp 450 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/HTML/BrowsingContext.h>
  7. #include <LibWeb/HTML/DocumentState.h>
  8. #include <LibWeb/HTML/SessionHistoryEntry.h>
  9. namespace Web::HTML {
  10. void SessionHistoryEntry::visit_edges(Cell::Visitor& visitor)
  11. {
  12. Base::visit_edges(visitor);
  13. visitor.visit(document_state);
  14. visitor.visit(original_source_browsing_context);
  15. }
  16. }