| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 module arc.mojom; | 5 module arc.mojom; |
| 6 | 6 |
| 7 import "accessibility_helper.mojom"; | 7 import "accessibility_helper.mojom"; |
| 8 import "app.mojom"; | 8 import "app.mojom"; |
| 9 import "audio.mojom"; | 9 import "audio.mojom"; |
| 10 import "auth.mojom"; | 10 import "auth.mojom"; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 import "notifications.mojom"; | 22 import "notifications.mojom"; |
| 23 import "obb_mounter.mojom"; | 23 import "obb_mounter.mojom"; |
| 24 import "policy.mojom"; | 24 import "policy.mojom"; |
| 25 import "power.mojom"; | 25 import "power.mojom"; |
| 26 import "print.mojom"; | 26 import "print.mojom"; |
| 27 import "process.mojom"; | 27 import "process.mojom"; |
| 28 import "storage_manager.mojom"; | 28 import "storage_manager.mojom"; |
| 29 import "tracing.mojom"; | 29 import "tracing.mojom"; |
| 30 import "tts.mojom"; | 30 import "tts.mojom"; |
| 31 import "video.mojom"; | 31 import "video.mojom"; |
| 32 import "voice_interaction_framework.mojom"; | |
| 33 import "wallpaper.mojom"; | 32 import "wallpaper.mojom"; |
| 34 | 33 |
| 35 // Next MinVersion: 24 | 34 // Next MinVersion: 23 |
| 36 // Deprecated method IDs: 101, 105 | 35 // Deprecated method IDs: 101, 105 |
| 37 // Next method ID: 130 | 36 // Next method ID: 129 |
| 38 interface ArcBridgeHost { | 37 interface ArcBridgeHost { |
| 39 // Keep the entries alphabetical. In order to do so without breaking | 38 // Keep the entries alphabetical. In order to do so without breaking |
| 40 // compatibility with the ARC instance, explicitly assign each interface a | 39 // compatibility with the ARC instance, explicitly assign each interface a |
| 41 // unique ordinal. | 40 // unique ordinal. |
| 42 | 41 |
| 43 // Notifies Chrome that the AccessibilityHelperInstance interface is ready. | 42 // Notifies Chrome that the AccessibilityHelperInstance interface is ready. |
| 44 [MinVersion=21] OnAccessibilityHelperInstanceReady@127( | 43 [MinVersion=21] OnAccessibilityHelperInstanceReady@127( |
| 45 AccessibilityHelperInstance instance_ptr); | 44 AccessibilityHelperInstance instance_ptr); |
| 46 | 45 |
| 47 // Notifies Chrome that the AppInstance interface is ready. | 46 // Notifies Chrome that the AppInstance interface is ready. |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 113 |
| 115 // Notifies Chrome that the TracingInstance interface is ready. | 114 // Notifies Chrome that the TracingInstance interface is ready. |
| 116 [MinVersion=22] OnTracingInstanceReady@128(TracingInstance instance_ptr); | 115 [MinVersion=22] OnTracingInstanceReady@128(TracingInstance instance_ptr); |
| 117 | 116 |
| 118 // Notifies Chrome that the TtsInstance interface is ready. | 117 // Notifies Chrome that the TtsInstance interface is ready. |
| 119 [MinVersion=17] OnTtsInstanceReady@123(TtsInstance instance_ptr); | 118 [MinVersion=17] OnTtsInstanceReady@123(TtsInstance instance_ptr); |
| 120 | 119 |
| 121 // Notifies Chrome that the VideoInstance interface is ready. | 120 // Notifies Chrome that the VideoInstance interface is ready. |
| 122 [MinVersion=6] OnVideoInstanceReady@107(VideoInstance instance_ptr); | 121 [MinVersion=6] OnVideoInstanceReady@107(VideoInstance instance_ptr); |
| 123 | 122 |
| 124 // Notifies Chrome that the VoiceInteractionFrameworkInstance is ready. | |
| 125 [MinVersion=23] OnVoiceInteractionFrameworkInstanceReady@129( | |
| 126 VoiceInteractionFrameworkInstance instance_ptr); | |
| 127 | |
| 128 // Notifies Chrome that the WallpaperInstance interface is ready. | 123 // Notifies Chrome that the WallpaperInstance interface is ready. |
| 129 [MinVersion=18] OnWallpaperInstanceReady@124(WallpaperInstance instance_ptr); | 124 [MinVersion=18] OnWallpaperInstanceReady@124(WallpaperInstance instance_ptr); |
| 130 }; | 125 }; |
| 131 | 126 |
| 132 interface ArcBridgeInstance { | 127 interface ArcBridgeInstance { |
| 133 // Establishes full-duplex communication with the host. | 128 // Establishes full-duplex communication with the host. |
| 134 // |host_ptr| is the MessagePipe endpoint that is bound to the | 129 // |host_ptr| is the MessagePipe endpoint that is bound to the |
| 135 // ArcBridgeHostPtr binding. | 130 // ArcBridgeHostPtr binding. |
| 136 Init@0(ArcBridgeHost host_ptr); | 131 Init@0(ArcBridgeHost host_ptr); |
| 137 }; | 132 }; |
| OLD | NEW |