// 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 "remoting/base/session_policies.h" #include <optional> namespace remoting { namespace { template <typename T> std::ostream& operator<<(std::ostream& os, const std::optional<T>& opt) { … } } // namespace bool SessionPolicies::operator==(const SessionPolicies&) const = default; std::ostream& operator<<(std::ostream& os, const SessionPolicies& session_policies) { … } } // namespace remoting