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

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

Issue 2881283002: add interface to start first run when voice interaction oobe is completed (Closed)
Patch Set: address review comment Created 3 years, 7 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
Index: components/arc/common/voice_interaction_arc_home.mojom
diff --git a/components/arc/common/voice_interaction_arc_home.mojom b/components/arc/common/voice_interaction_arc_home.mojom
index 5f08fdde2e98c751888bc040b6f4448f40249e97..37e7b372df8d6b5ed4df2a8eafef7159d1ed470c 100644
--- a/components/arc/common/voice_interaction_arc_home.mojom
+++ b/components/arc/common/voice_interaction_arc_home.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: 1
+// Next MinVersion: 2
module arc.mojom;
@@ -50,12 +50,16 @@ struct VoiceInteractionStructure {
};
// Handles voice interaction queries from Android.
-// Next method ID: 1
+// Next method ID: 3
interface VoiceInteractionArcHomeHost {
// Returns view hierarchy of current window represented as
// VoiceInteractionStructure. Returns empty if the request
// fails.
GetVoiceInteractionStructure@1() => (VoiceInteractionStructure? structure);
+
+ // Notifies VoiceInteractionArcHomeHost that voice interaction OOBE setup
+ // is done.
+ [MinVersion=1] OnVoiceInteractionOobeSetupComplete@2();
};
// Connects with ArcHome.

Powered by Google App Engine
This is Rietveld 408576698