summaryrefslogtreecommitdiff
path: root/chromium/chrome/services/keymaster
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/services/keymaster')
-rw-r--r--chromium/chrome/services/keymaster/public/mojom/cert_store.mojom5
1 files changed, 3 insertions, 2 deletions
diff --git a/chromium/chrome/services/keymaster/public/mojom/cert_store.mojom b/chromium/chrome/services/keymaster/public/mojom/cert_store.mojom
index 9a705c1b3b0..d5c07397019 100644
--- a/chromium/chrome/services/keymaster/public/mojom/cert_store.mojom
+++ b/chromium/chrome/services/keymaster/public/mojom/cert_store.mojom
@@ -37,14 +37,15 @@ enum SignatureResult {
// Next method ID: 1
interface CertStoreHost {
// Returns an interface to SecurityTokenOperation.
- GetSecurityTokenOperation@0(SecurityTokenOperation& operation) => ();
+ GetSecurityTokenOperation@0(
+ pending_receiver<SecurityTokenOperation> operation) => ();
};
// Interface exposed by arc-keymaster daemon.
// Next method ID: 1
interface CertStoreInstance {
// Establishes full-duplex communication with the host.
- Init@0(CertStoreHost host_ptr) => ();
+ Init@0(pending_remote<CertStoreHost> host_remote) => ();
};
// Implemented in Chrome.