#ifndef CHROME_BROWSER_LENS_CORE_MOJOM_POLYGON_MOJOM_H_
#define CHROME_BROWSER_LENS_CORE_MOJOM_POLYGON_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 "chrome/browser/lens/core/mojom/polygon.mojom-features.h"
#include "chrome/browser/lens/core/mojom/polygon.mojom-shared.h"
#include "chrome/browser/lens/core/mojom/polygon.mojom-forward.h"
#include <string>
#include <vector>
namespace lens::mojom {
class Vertex { … };
template <typename T, Vertex::EnableIfSame<T>* = nullptr>
bool operator<(const T& lhs, const T& rhs);
template <typename T, Vertex::EnableIfSame<T>* = nullptr>
bool operator<=(const T& lhs, const T& rhs) { … }
template <typename T, Vertex::EnableIfSame<T>* = nullptr>
bool operator>(const T& lhs, const T& rhs) { … }
template <typename T, Vertex::EnableIfSame<T>* = nullptr>
bool operator>=(const T& lhs, const T& rhs) { … }
class Polygon { … };
template <typename T, Polygon::EnableIfSame<T>* = nullptr>
bool operator<(const T& lhs, const T& rhs);
template <typename T, Polygon::EnableIfSame<T>* = nullptr>
bool operator<=(const T& lhs, const T& rhs) { … }
template <typename T, Polygon::EnableIfSame<T>* = nullptr>
bool operator>(const T& lhs, const T& rhs) { … }
template <typename T, Polygon::EnableIfSame<T>* = nullptr>
bool operator>=(const T& lhs, const T& rhs) { … }
template <typename StructPtrType>
PolygonPtr Polygon::Clone() const { … }
template <typename T, Polygon::EnableIfSame<T>*>
bool Polygon::Equals(const T& other_struct) const { … }
template <typename T, Polygon::EnableIfSame<T>*>
bool operator<(const T& lhs, const T& rhs) { … }
template <typename StructPtrType>
VertexPtr Vertex::Clone() const { … }
template <typename T, Vertex::EnableIfSame<T>*>
bool Vertex::Equals(const T& other_struct) const { … }
template <typename T, Vertex::EnableIfSame<T>*>
bool operator<(const T& lhs, const T& rhs) { … }
}
namespace mojo {
template <>
struct StructTraits<::lens::mojom::Polygon::DataView,
::lens::mojom::PolygonPtr> { … };
template <>
struct StructTraits<::lens::mojom::Vertex::DataView,
::lens::mojom::VertexPtr> { … };
}
#endif