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

Unified Diff: ipc/ipc.mojom

Issue 2137353002: Adds associated interface support to IPC::Channel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@channel-bindings-1
Patch Set: . Created 4 years, 5 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/ipc.gyp ('k') | ipc/ipc_channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc.mojom
diff --git a/ipc/ipc.mojom b/ipc/ipc.mojom
index 681da120f70e5614ac0c9418fa2526ecdb92d88f..28d73fbea63bed5aca12cb544c25c8ee0eb801fd 100644
--- a/ipc/ipc.mojom
+++ b/ipc/ipc.mojom
@@ -17,8 +17,14 @@ struct SerializedHandle {
Type type;
};
+// A placeholder interface type since we don't yet support generic associated
+// message pipe handles.
+interface GenericInterface {};
+
interface Channel {
Receive(array<uint8> data, array<SerializedHandle>? handles);
+
+ GetAssociatedInterface(string name, associated GenericInterface& request);
};
// An interface for connecting a pair of Channel interfaces representing a
« no previous file with comments | « ipc/ipc.gyp ('k') | ipc/ipc_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698