#ifndef COMPONENTS_MIRRORING_MOJOM_SESSION_PARAMETERS_MOJOM_H_
#define COMPONENTS_MIRRORING_MOJOM_SESSION_PARAMETERS_MOJOM_H_
#include <stdint.h>
#include <limits>
#include <optional>
#include <type_traits>
#include <utility>
#include "base/types/cxx23_to_underlying.h"
#include "mojo/public/cpp/bindings/clone_traits.h"
#include "mojo/public/cpp/bindings/equals_traits.h"
#include "mojo/public/cpp/bindings/lib/serialization.h"
#include "mojo/public/cpp/bindings/struct_ptr.h"
#include "mojo/public/cpp/bindings/struct_traits.h"
#include "mojo/public/cpp/bindings/union_traits.h"
#include "third_party/perfetto/include/perfetto/tracing/traced_value_forward.h"
#include "components/mirroring/mojom/session_parameters.mojom-features.h"
#include "components/mirroring/mojom/session_parameters.mojom-shared.h"
#include "components/mirroring/mojom/session_parameters.mojom-forward.h"
#include "services/network/public/mojom/ip_address.mojom.h"
#include "mojo/public/mojom/base/time.mojom.h"
#include <string>
#include <vector>
namespace mirroring::mojom {
class SessionParameters { … };
template <typename T, SessionParameters::EnableIfSame<T>* = nullptr>
bool operator<(const T& lhs, const T& rhs);
template <typename T, SessionParameters::EnableIfSame<T>* = nullptr>
bool operator<=(const T& lhs, const T& rhs) { … }
template <typename T, SessionParameters::EnableIfSame<T>* = nullptr>
bool operator>(const T& lhs, const T& rhs) { … }
template <typename T, SessionParameters::EnableIfSame<T>* = nullptr>
bool operator>=(const T& lhs, const T& rhs) { … }
template <typename StructPtrType>
SessionParametersPtr SessionParameters::Clone() const { … }
template <typename T, SessionParameters::EnableIfSame<T>*>
bool SessionParameters::Equals(const T& other_struct) const { … }
template <typename T, SessionParameters::EnableIfSame<T>*>
bool operator<(const T& lhs, const T& rhs) { … }
}
namespace mojo {
template <>
struct StructTraits<::mirroring::mojom::SessionParameters::DataView,
::mirroring::mojom::SessionParametersPtr> { … };
}
#endif