// Copyright 2022 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/services/storage/indexed_db/locks/partitioned_lock_id.h" #include <iomanip> #include <ostream> namespace content { std::ostream& operator<<(std::ostream& out, const PartitionedLockId& lock_id) { … } bool operator<(const PartitionedLockId& x, const PartitionedLockId& y) { … } bool operator==(const PartitionedLockId& x, const PartitionedLockId& y) { … } bool operator!=(const PartitionedLockId& x, const PartitionedLockId& y) { … } } // namespace content