// 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 "chrome/browser/web_applications/locks/partitioned_lock_id.h" #include <iomanip> #include <ostream> namespace web_app { 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 web_app