| Index: components/arc/common/voice_interaction_framework.mojom
|
| diff --git a/components/arc/common/voice_interaction_framework.mojom b/components/arc/common/voice_interaction_framework.mojom
|
| index 7206c781e40795cb0961e3e19eda10c11a22d018..6843e5b54603b0a50928e9dfb523bfd37a540001 100644
|
| --- a/components/arc/common/voice_interaction_framework.mojom
|
| +++ b/components/arc/common/voice_interaction_framework.mojom
|
| @@ -2,10 +2,12 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
| //
|
| -// Next MinVersion: 1
|
| +// Next MinVersion: 2
|
|
|
| module arc.mojom;
|
|
|
| +import "screen_rect.mojom";
|
| +
|
| // Handles voice interaction queries from Android.
|
| // Next method ID: 1
|
| interface VoiceInteractionFrameworkHost {
|
| @@ -15,10 +17,17 @@ interface VoiceInteractionFrameworkHost {
|
| };
|
|
|
| // Connects with Android system server.
|
| -// Next method ID:2
|
| +// Next method ID:4
|
| interface VoiceInteractionFrameworkInstance {
|
| Init@0(VoiceInteractionFrameworkHost host_ptr);
|
|
|
| // Starts the voice interaction session in container.
|
| StartVoiceInteractionSession@1();
|
| +
|
| + // Starts the voice interaction session in container, with a screen region
|
| + // selected.
|
| + [MinVersion=1] StartVoiceInteractionSessionForRegion@2(ScreenRect region);
|
| +
|
| + // Toggles the metalayer.
|
| + [MinVersion=1] ToggleMetalayer@3();
|
| };
|
|
|