Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1080)

Unified Diff: components/arc/common/voice_interaction_framework.mojom

Issue 2803403002: Support region selection for voice interaction session (Closed)
Patch Set: Addressed comments Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/ash/palette_delegate_chromeos.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
};
« no previous file with comments | « chrome/browser/ui/ash/palette_delegate_chromeos.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698