aboutsummaryrefslogtreecommitdiff
path: root/ipc/ipc_channel_handle.h
diff options
context:
space:
mode:
authorHidehiko Abe <hidehiko@google.com>2018-04-24 02:15:00 +0900
committerHidehiko Abe <hidehiko@google.com>2018-04-24 10:13:47 +0900
commit920588a1acdc4721abb713d8162010e4b85ae53e (patch)
tree5d0b02a305d2ce5e91eb915695a338dabff2ed6b /ipc/ipc_channel_handle.h
parentca6c42abc66e142da1036f0061976d671862c457 (diff)
downloadlibmojo-920588a1acdc4721abb713d8162010e4b85ae53e.tar.gz
This CL moves following files. - .gitignore - Android.bp is merged into libchrome's Android.bp. - base/android/* - build/* except build_config.h which is exactly same with libchrome's. - ipc/* - mojo/* - soong/* into libchrome_tools/ - third_party/{catapult,jinja2,markupsafe,ply}/* - ui/gfx/{geometry,range}/mojo/* Then removed following files: - Android.bp - CleanSpec.mk - build/build_config.h And added README.md to notify the migration. Bug: 73606903 Test: Built locally. Ran on DUT. Change-Id: I94aa1b43ff0854f48f30fdf03025bd1c8a346038
Diffstat (limited to 'ipc/ipc_channel_handle.h')
-rw-r--r--ipc/ipc_channel_handle.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/ipc/ipc_channel_handle.h b/ipc/ipc_channel_handle.h
deleted file mode 100644
index ef31b84..0000000
--- a/ipc/ipc_channel_handle.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 2012 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_IPC_CHANNEL_HANDLE_H_
-#define IPC_IPC_CHANNEL_HANDLE_H_
-
-#include <string>
-
-#include "build/build_config.h"
-#include "mojo/public/cpp/system/message_pipe.h"
-
-#if defined(OS_NACL_SFI)
-#include "base/file_descriptor_posix.h"
-#endif // defined (OS_NACL_SFI)
-
-namespace IPC {
-
-// Note that serialization for this object is defined in the ParamTraits
-// template specialization in ipc_message_utils.h.
-#if defined(OS_NACL_SFI)
-struct ChannelHandle {
- ChannelHandle() {}
- explicit ChannelHandle(const base::FileDescriptor& s) : socket(s) {}
-
- base::FileDescriptor socket;
-};
-#else
-struct ChannelHandle {
- ChannelHandle() {}
- ChannelHandle(mojo::MessagePipeHandle h) : mojo_handle(h) {}
-
- bool is_mojo_channel_handle() const { return mojo_handle.is_valid(); }
-
- mojo::MessagePipeHandle mojo_handle;
-};
-#endif // defined(OS_NACL_SFI)
-
-} // namespace IPC
-
-#endif // IPC_IPC_CHANNEL_HANDLE_H_