summaryrefslogtreecommitdiff
path: root/chromium/ipc/ipc.mojom
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ipc/ipc.mojom')
-rw-r--r--chromium/ipc/ipc.mojom4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/ipc/ipc.mojom b/chromium/ipc/ipc.mojom
index 9631ce8fd23..4fb8881fcfc 100644
--- a/chromium/ipc/ipc.mojom
+++ b/chromium/ipc/ipc.mojom
@@ -4,7 +4,6 @@
module IPC.mojom;
-import "mojo/public/mojom/base/big_buffer.mojom";
import "mojo/public/interfaces/bindings/native_struct.mojom";
// A placeholder interface type since we don't yet support generic associated
@@ -14,7 +13,7 @@ interface GenericInterface {};
// Typemapped such that arbitrarily large IPC::Message objects can be sent and
// received with minimal copying.
struct Message {
- mojo_base.mojom.BigBuffer buffer;
+ array<uint8> bytes;
array<mojo.native.SerializedHandle>? handles;
};
@@ -24,6 +23,7 @@ interface Channel {
SetPeerPid(int32 pid);
// Transmits a classical Chrome IPC message.
+ [UnlimitedSize]
Receive(Message message);
// Requests a Channel-associated interface.