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