chromium/ipc/native_handle_type_converters.h

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef IPC_NATIVE_HANDLE_TYPE_CONVERTERS_H_
#define IPC_NATIVE_HANDLE_TYPE_CONVERTERS_H_

#include "ipc/ipc_message_attachment.h"
#include "mojo/public/cpp/bindings/type_converter.h"  // nogncheck
#include "mojo/public/interfaces/bindings/native_struct.mojom-shared.h"

namespace mojo {

template <>
struct TypeConverter<IPC::MessageAttachment::Type,
                     native::SerializedHandleType> {};

template <>
struct TypeConverter<native::SerializedHandleType,
                     IPC::MessageAttachment::Type> {};

}  // namespace mojo

#endif  // IPC_NATIVE_HANDLE_TYPE_CONVERTERS_H_