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

Unified Diff: components/arc/arc_bridge_service.h

Issue 2808383004: Refactor and send voice interaction structure (Closed)
Patch Set: fix window build 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 | « components/arc/arc_bridge_host_impl.cc ('k') | components/arc/common/arc_bridge.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/arc_bridge_service.h
diff --git a/components/arc/arc_bridge_service.h b/components/arc/arc_bridge_service.h
index 48fca23f2e899fbad43ab3b426d7e042be494df2..7d540135ad7cdc44d37f15fc58d852b364e9f634 100644
--- a/components/arc/arc_bridge_service.h
+++ b/components/arc/arc_bridge_service.h
@@ -39,6 +39,7 @@ class StorageManagerInstance;
class TracingInstance;
class TtsInstance;
class VideoInstance;
+class VoiceInteractionArcHomeInstance;
class VoiceInteractionFrameworkInstance;
class WallpaperInstance;
@@ -94,6 +95,10 @@ class ArcBridgeService {
InstanceHolder<mojom::TracingInstance>* tracing() { return &tracing_; }
InstanceHolder<mojom::TtsInstance>* tts() { return &tts_; }
InstanceHolder<mojom::VideoInstance>* video() { return &video_; }
+ InstanceHolder<mojom::VoiceInteractionArcHomeInstance>*
+ voice_interaction_arc_home() {
+ return &voice_interaction_arc_home_;
+ }
InstanceHolder<mojom::VoiceInteractionFrameworkInstance>*
voice_interaction_framework() {
return &voice_interaction_framework_;
@@ -126,6 +131,8 @@ class ArcBridgeService {
InstanceHolder<mojom::TracingInstance> tracing_;
InstanceHolder<mojom::TtsInstance> tts_;
InstanceHolder<mojom::VideoInstance> video_;
+ InstanceHolder<mojom::VoiceInteractionArcHomeInstance>
+ voice_interaction_arc_home_;
InstanceHolder<mojom::VoiceInteractionFrameworkInstance>
voice_interaction_framework_;
InstanceHolder<mojom::WallpaperInstance> wallpaper_;
« no previous file with comments | « components/arc/arc_bridge_host_impl.cc ('k') | components/arc/common/arc_bridge.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698