#ifndef GPU_IPC_COMMON_MAILBOX_MOJOM_H_
#define GPU_IPC_COMMON_MAILBOX_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 "gpu/ipc/common/mailbox.mojom-features.h"
#include "gpu/ipc/common/mailbox.mojom-shared.h"
#include "gpu/ipc/common/mailbox.mojom-forward.h"
#include <string>
#include <vector>
#include "gpu/ipc/common/mailbox_mojom_traits.h"
#include "gpu/gpu_export.h"
namespace gpu::mojom {
class GPU_EXPORT Mailbox { … };
template <typename T, Mailbox::EnableIfSame<T>* = nullptr>
bool operator<(const T& lhs, const T& rhs);
template <typename T, Mailbox::EnableIfSame<T>* = nullptr>
bool operator<=(const T& lhs, const T& rhs) { … }
template <typename T, Mailbox::EnableIfSame<T>* = nullptr>
bool operator>(const T& lhs, const T& rhs) { … }
template <typename T, Mailbox::EnableIfSame<T>* = nullptr>
bool operator>=(const T& lhs, const T& rhs) { … }
template <typename StructPtrType>
MailboxPtr Mailbox::Clone() const { … }
template <typename T, Mailbox::EnableIfSame<T>*>
bool Mailbox::Equals(const T& other_struct) const { … }
template <typename T, Mailbox::EnableIfSame<T>*>
bool operator<(const T& lhs, const T& rhs) { … }
}
namespace mojo {
template <>
struct GPU_EXPORT StructTraits<::gpu::mojom::Mailbox::DataView,
::gpu::mojom::MailboxPtr> { … };
}
#endif