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

Unified Diff: blimp/engine/mojo/blob_channel.mojom

Issue 2033013003: Use shared memory for moving data over BlobChannel Mojo interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blobchannel-master
Patch Set: Added new test runner with Mojo initialization 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
Index: blimp/engine/mojo/blob_channel.mojom
diff --git a/blimp/engine/mojo/blob_channel.mojom b/blimp/engine/mojo/blob_channel.mojom
index 0960916fea10655f4e3511b8e2c1684108c08ace..10065ed73538eb4f14aadb584601fb5c2e3f4278 100644
--- a/blimp/engine/mojo/blob_channel.mojom
+++ b/blimp/engine/mojo/blob_channel.mojom
@@ -5,10 +5,10 @@
module blimp.engine.mojom;
interface BlobChannel {
- // Stores the blob |id| in the BlobCache.
- // TODO(kmarshall): Use shared memory for more efficient data transfer, see
- // crbug.com/614564 .
- PutBlob(string id, string data);
+ // Stores the blob |id| in the BlobCache, using shared memory to keep
+ // large data payloads out of the Mojo IPC channel.
Wez 2016/06/11 00:16:37 nit: Isn't the use of shared-memory obvious from t
Kevin M 2016/06/16 21:00:38 It wasn't to maniscalco@, who requested that I add
maniscalco 2016/06/16 21:07:14 Sorry if I was unclear. The "why" is the part I'm
Kevin M 2016/06/21 17:19:46 How's this?
maniscalco 2016/06/21 17:33:15 That captures it nicely.
+ // The service invokes the no-arg callback after the operation has completed.
+ PutBlob(string id, handle<shared_buffer> data, uint32 size) => ();
Wez 2016/06/11 00:16:37 nit: Do we need |size| to be explicit? Does Mojo n
Kevin M 2016/06/16 21:00:38 It doesn't. Handles are just opaque ints, and the
// Requests that the BlobChannel push the blob |id| over the wire.
// The request will be ignored if the BlobChannel knows that

Powered by Google App Engine
This is Rietveld 408576698