1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30

ipc / native_handle_type_converters.h [blame]

// 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> {
  static IPC::MessageAttachment::Type Convert(
      native::SerializedHandleType type);
};

template <>
struct TypeConverter<native::SerializedHandleType,
                     IPC::MessageAttachment::Type> {
  static native::SerializedHandleType Convert(
      IPC::MessageAttachment::Type type);
};

}  // namespace mojo

#endif  // IPC_NATIVE_HANDLE_TYPE_CONVERTERS_H_