| 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_arc_home.mojom"; |
| 32 import "voice_interaction_framework.mojom"; | 33 import "voice_interaction_framework.mojom"; |
| 33 import "wallpaper.mojom"; | 34 import "wallpaper.mojom"; |
| 34 | 35 |
| 35 // Next MinVersion: 24 | 36 // Next MinVersion: 25 |
| 36 // Deprecated method IDs: 101, 105 | 37 // Deprecated method IDs: 101, 105 |
| 37 // Next method ID: 130 | 38 // Next method ID: 131 |
| 38 interface ArcBridgeHost { | 39 interface ArcBridgeHost { |
| 39 // Keep the entries alphabetical. In order to do so without breaking | 40 // Keep the entries alphabetical. In order to do so without breaking |
| 40 // compatibility with the ARC instance, explicitly assign each interface a | 41 // compatibility with the ARC instance, explicitly assign each interface a |
| 41 // unique ordinal. | 42 // unique ordinal. |
| 42 | 43 |
| 43 // Notifies Chrome that the AccessibilityHelperInstance interface is ready. | 44 // Notifies Chrome that the AccessibilityHelperInstance interface is ready. |
| 44 [MinVersion=21] OnAccessibilityHelperInstanceReady@127( | 45 [MinVersion=21] OnAccessibilityHelperInstanceReady@127( |
| 45 AccessibilityHelperInstance instance_ptr); | 46 AccessibilityHelperInstance instance_ptr); |
| 46 | 47 |
| 47 // Notifies Chrome that the AppInstance interface is ready. | 48 // Notifies Chrome that the AppInstance interface is ready. |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 115 |
| 115 // Notifies Chrome that the TracingInstance interface is ready. | 116 // Notifies Chrome that the TracingInstance interface is ready. |
| 116 [MinVersion=22] OnTracingInstanceReady@128(TracingInstance instance_ptr); | 117 [MinVersion=22] OnTracingInstanceReady@128(TracingInstance instance_ptr); |
| 117 | 118 |
| 118 // Notifies Chrome that the TtsInstance interface is ready. | 119 // Notifies Chrome that the TtsInstance interface is ready. |
| 119 [MinVersion=17] OnTtsInstanceReady@123(TtsInstance instance_ptr); | 120 [MinVersion=17] OnTtsInstanceReady@123(TtsInstance instance_ptr); |
| 120 | 121 |
| 121 // Notifies Chrome that the VideoInstance interface is ready. | 122 // Notifies Chrome that the VideoInstance interface is ready. |
| 122 [MinVersion=6] OnVideoInstanceReady@107(VideoInstance instance_ptr); | 123 [MinVersion=6] OnVideoInstanceReady@107(VideoInstance instance_ptr); |
| 123 | 124 |
| 125 // Notifies Chrome that the VoiceInteractionArcHomeInstance is ready. |
| 126 [MinVersion=24] OnVoiceInteractionArcHomeInstanceReady@130( |
| 127 VoiceInteractionArcHomeInstance instance_ptr); |
| 128 |
| 124 // Notifies Chrome that the VoiceInteractionFrameworkInstance is ready. | 129 // Notifies Chrome that the VoiceInteractionFrameworkInstance is ready. |
| 125 [MinVersion=23] OnVoiceInteractionFrameworkInstanceReady@129( | 130 [MinVersion=23] OnVoiceInteractionFrameworkInstanceReady@129( |
| 126 VoiceInteractionFrameworkInstance instance_ptr); | 131 VoiceInteractionFrameworkInstance instance_ptr); |
| 127 | 132 |
| 128 // Notifies Chrome that the WallpaperInstance interface is ready. | 133 // Notifies Chrome that the WallpaperInstance interface is ready. |
| 129 [MinVersion=18] OnWallpaperInstanceReady@124(WallpaperInstance instance_ptr); | 134 [MinVersion=18] OnWallpaperInstanceReady@124(WallpaperInstance instance_ptr); |
| 130 }; | 135 }; |
| 131 | 136 |
| 132 interface ArcBridgeInstance { | 137 interface ArcBridgeInstance { |
| 133 // Establishes full-duplex communication with the host. | 138 // Establishes full-duplex communication with the host. |
| 134 // |host_ptr| is the MessagePipe endpoint that is bound to the | 139 // |host_ptr| is the MessagePipe endpoint that is bound to the |
| 135 // ArcBridgeHostPtr binding. | 140 // ArcBridgeHostPtr binding. |
| 136 Init@0(ArcBridgeHost host_ptr); | 141 Init@0(ArcBridgeHost host_ptr); |
| 137 }; | 142 }; |
| OLD | NEW |