// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/visitedlink/core/visited_link.h" namespace visitedlink { std::optional<VisitedLink> VisitedLink::MaybeCreateSelfLink() const { … } bool VisitedLink::IsValid() const { … } bool operator==(const VisitedLink& lhs, const VisitedLink& rhs) { … } bool operator!=(const VisitedLink& lhs, const VisitedLink& rhs) { … } bool operator<(const VisitedLink& lhs, const VisitedLink& rhs) { … } } // namespace visitedlink