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 |