#ifndef MOJO_PUBLIC_MOJOM_BASE_TOKEN_MOJOM_H_
#define MOJO_PUBLIC_MOJOM_BASE_TOKEN_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 "mojo/public/mojom/base/token.mojom-features.h"
#include "mojo/public/mojom/base/token.mojom-shared.h"
#include "mojo/public/mojom/base/token.mojom-forward.h"
#include <string>
#include <vector>
#include "mojo/public/cpp/base/token_mojom_traits.h"
#include "base/component_export.h"
namespace mojo_base::mojom {
class COMPONENT_EXPORT(MOJO_BASE_MOJOM) Token { … };
template <typename T, Token::EnableIfSame<T>* = nullptr>
bool operator<(const T& lhs, const T& rhs);
template <typename T, Token::EnableIfSame<T>* = nullptr>
bool operator<=(const T& lhs, const T& rhs) { … }
template <typename T, Token::EnableIfSame<T>* = nullptr>
bool operator>(const T& lhs, const T& rhs) { … }
template <typename T, Token::EnableIfSame<T>* = nullptr>
bool operator>=(const T& lhs, const T& rhs) { … }
template <typename StructPtrType>
TokenPtr Token::Clone() const { … }
template <typename T, Token::EnableIfSame<T>*>
bool Token::Equals(const T& other_struct) const { … }
template <typename T, Token::EnableIfSame<T>*>
bool operator<(const T& lhs, const T& rhs) { … }
}
namespace mojo {
template <>
struct COMPONENT_EXPORT(MOJO_BASE_MOJOM) StructTraits<::mojo_base::mojom::Token::DataView,
::mojo_base::mojom::TokenPtr> { … };
}
#endif