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

Unified Diff: extensions/common/mojo/stash.mojom

Issue 2410743002: Remove the mojo serial interfaces and related infrastructure. (Closed)
Patch Set: Created 4 years, 2 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 | « extensions/common/BUILD.gn ('k') | extensions/common/switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/mojo/stash.mojom
diff --git a/extensions/common/mojo/stash.mojom b/extensions/common/mojo/stash.mojom
deleted file mode 100644
index 5c1e68bd169b62a86e7830c59eeadeb96ab07404..0000000000000000000000000000000000000000
--- a/extensions/common/mojo/stash.mojom
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright 2014 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 extensions;
-
-// A stashed client object. This contains the serialized bytes and handles,
-// stored in |data| and |handles|, respectively, of a mojo struct of the
-// serialized representation of the client object.
-struct StashedObject {
- // A client identifier for this stashed object. This is to allow the client to
- // reconstitute the correct serialization struct from this StashedObject.
- string id;
-
- // The serialized data of the serialization struct.
- array<uint8> data;
-
- // The handles contained within the serialization struct.
- array<handle> stashed_handles;
-
- // Whether to monitor |stashed_handles| and relaunch the client when a handle
- // becomes readable.
- bool monitor_handles = false;
-};
-
-interface StashService {
- // Adds |stashed_objects| to the stash. StashedObjects are stored in memory in
- // the browser process for as long as the extension that owns them remains
- // enabled and the browser process runs.
- AddToStash(array<StashedObject> stashed_objects);
-
- // Returns all stashed objects.
- RetrieveStash() => (array<StashedObject> stash);
-};
« no previous file with comments | « extensions/common/BUILD.gn ('k') | extensions/common/switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698