blob: e3421c3e88bc31aa78b4d0b51427cb4948bb5d36 [file] [log] [blame]
Hidehiko Abeb268b432018-04-24 01:37:19 +09001// Copyright (c) 2015 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "ipc/ipc_mojo_handle_attachment.h"
6
7#include <utility>
8
9#include "build/build_config.h"
10
11namespace IPC {
12namespace internal {
13
14MojoHandleAttachment::MojoHandleAttachment(mojo::ScopedHandle handle)
15 : handle_(std::move(handle)) {}
16
17MojoHandleAttachment::~MojoHandleAttachment() {
18}
19
20MessageAttachment::Type MojoHandleAttachment::GetType() const {
21 return Type::MOJO_HANDLE;
22}
23
24mojo::ScopedHandle MojoHandleAttachment::TakeHandle() {
25 return std::move(handle_);
26}
27
28} // namespace internal
29} // namespace IPC