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
ipc / handle_attachment_fuchsia.cc [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.
#include "ipc/handle_attachment_fuchsia.h"
#include <zircon/syscalls.h>
#include <zircon/types.h>
#include "base/fuchsia/fuchsia_logging.h"
namespace IPC {
namespace internal {
HandleAttachmentFuchsia::HandleAttachmentFuchsia(zx::handle handle)
: handle_(std::move(handle)) {}
HandleAttachmentFuchsia::~HandleAttachmentFuchsia() {}
MessageAttachment::Type HandleAttachmentFuchsia::GetType() const {
return Type::FUCHSIA_HANDLE;
}
} // namespace internal
} // namespace IPC