// 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. #ifndef REMOTING_BASE_SESSION_POLICIES_H_ #define REMOTING_BASE_SESSION_POLICIES_H_ #include <stddef.h> #include <optional> #include "base/time/time.h" #include "remoting/base/port_range.h" namespace remoting { // Policies to be applied to the CRD host. struct SessionPolicies { … }; std::ostream& operator<<(std::ostream& os, const SessionPolicies& session_policies); } // namespace remoting #endif // REMOTING_BASE_SESSION_POLICIES_H_