#ifndef MOJO_PUBLIC_CPP_BINDINGS_LIB_HANDLE_SERIALIZATION_SEND_VALIDATION_H_
#define MOJO_PUBLIC_CPP_BINDINGS_LIB_HANDLE_SERIALIZATION_SEND_VALIDATION_H_
#include "mojo/public/cpp/bindings/lib/has_send_validation_helper.h"
#include "mojo/public/cpp/platform/platform_handle.h"
#include "mojo/public/cpp/system/handle.h"
namespace mojo::internal {
template <typename T>
struct HasSendValidationSerialize<ScopedHandleBase<T>, ScopedHandleBase<T>>
: std::false_type {};
template <>
struct HasSendValidationSerialize<PlatformHandle, PlatformHandle>
: std::false_type {};
}
#endif