blob: 81d26c5a9921fd183c2ab37f2eeb889fe98e62ab [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IPC_NATIVE_HANDLE_CONVERTER_H_
#define IPC_NATIVE_HANDLE_CONVERTER_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::SerializedHandle_Type> {
static IPC::MessageAttachment::Type Convert(
native::SerializedHandle_Type type);
};
template <>
struct TypeConverter<native::SerializedHandle_Type,
IPC::MessageAttachment::Type> {
static native::SerializedHandle_Type Convert(
IPC::MessageAttachment::Type type);
};
} // namespace mojo
#endif // IPC_NATIVE_HANDLE_CONVERTER_H_