Chromium Code Reviews| Index: components/arc/common/intent_helper.mojom |
| diff --git a/components/arc/common/intent_helper.mojom b/components/arc/common/intent_helper.mojom |
| index 179d5ea2b64f89db0e8dd82162d7426f00267443..ae2da734d9e2017fcd917defbef9d9b3e16427b9 100644 |
| --- a/components/arc/common/intent_helper.mojom |
| +++ b/components/arc/common/intent_helper.mojom |
| @@ -2,7 +2,7 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| // |
| -// Next MinVersion: 16 |
| +// Next MinVersion: 17 |
| module arc.mojom; |
| @@ -84,7 +84,7 @@ struct UrlWithMimeType { |
| // Handles intents from ARC in Chrome. |
| // Deprecated method ID: 4 |
| -// Next method ID: 6 |
| +// Next method ID: 7 |
| interface IntentHelperHost { |
| // Called when icons associated with the package are no longer up to date. |
| [MinVersion=3] OnIconInvalidated@1(string package_name); |
| @@ -105,6 +105,10 @@ interface IntentHelperHost { |
| // Sets an image as the wallpaper. |
| // |jpeg_data| is a JPEG encoded wallpaper image. |
| [MinVersion=8] SetWallpaperDeprecated@4(array<uint8> jpeg_data); |
| + |
| + // Notifies IntentHelperHost that the voice interaction setup process |
| + // is finished. |
| + [MinVersion=16] OnVoiceInteractionOobeSetupCompleted@6(); |
|
Luis Héctor Chávez
2017/05/15 22:17:06
Can this be in another .mojom? I'd like to avoid a
|
| }; |
| // Sends intents to ARC on behalf of Chrome. |