Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2135)

Unified Diff: ipc/mojo/ipc.mojom

Issue 2069803003: Fold //ipc/mojo into //ipc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo-ipc-deps
Patch Set: rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ipc/mojo/OWNERS ('k') | ipc/mojo/ipc_channel_mojo.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/mojo/ipc.mojom
diff --git a/ipc/mojo/ipc.mojom b/ipc/mojo/ipc.mojom
deleted file mode 100644
index 681da120f70e5614ac0c9418fa2526ecdb92d88f..0000000000000000000000000000000000000000
--- a/ipc/mojo/ipc.mojom
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright 2016 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.
-
-module IPC.mojom;
-
-struct SerializedHandle {
- handle the_handle;
-
- enum Type {
- MOJO_HANDLE,
- PLATFORM_FILE,
- WIN_HANDLE,
- MACH_PORT,
- };
-
- Type type;
-};
-
-interface Channel {
- Receive(array<uint8> data, array<SerializedHandle>? handles);
-};
-
-// An interface for connecting a pair of Channel interfaces representing a
-// bidirectional IPC channel.
-interface Bootstrap {
- // Initializes a Chrome IPC channel over |to_client_channel| and
- // |to_server_channel|. Each side also sends its PID to the other side.
- Init(associated Channel& to_client_channel,
- associated Channel to_server_channel,
- int32 pid) => (int32 pid);
-};
« no previous file with comments | « ipc/mojo/OWNERS ('k') | ipc/mojo/ipc_channel_mojo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698