diff options
Diffstat (limited to 'chromium/components/arc/mojom/midis.mojom')
-rw-r--r-- | chromium/components/arc/mojom/midis.mojom | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chromium/components/arc/mojom/midis.mojom b/chromium/components/arc/mojom/midis.mojom index 4a8e1735e20..18d9e40376e 100644 --- a/chromium/components/arc/mojom/midis.mojom +++ b/chromium/components/arc/mojom/midis.mojom @@ -66,7 +66,8 @@ interface MidisServer { // by the client). // Next Method ID: 1 interface MidisHost { - Connect@0(MidisServer& server, MidisClient client); + Connect@0( + pending_receiver<MidisServer> server, pending_remote<MidisClient> client); }; // MidisInstance is implemented in the ARC MIDI JNI code that @@ -74,8 +75,8 @@ interface MidisHost { // Next Method ID: 2 interface MidisInstance { // DEPRECATED: Please use Init@1 instead. - InitDeprecated@0(MidisHost host_ptr); + InitDeprecated@0(pending_remote<MidisHost> host_remote); // Establishes full-duplex communication with the host. - [MinVersion=1] Init@1(MidisHost host_ptr) => (); + [MinVersion=1] Init@1(pending_remote<MidisHost> host_remote) => (); }; |