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

Unified Diff: components/arc/arc_bridge_service.h

Issue 2760773002: Reland: add voice interaction shortcut. (Closed)
Patch Set: modified CL Created 3 years, 9 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 a7377f9504a323a94b2345dc6893346fb2a3518c..48fca23f2e899fbad43ab3b426d7e042be494df2 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 VoiceInteractionFrameworkInstance;
class WallpaperInstance;
} // namespace mojom
@@ -93,6 +94,10 @@ class ArcBridgeService {
InstanceHolder<mojom::TracingInstance>* tracing() { return &tracing_; }
InstanceHolder<mojom::TtsInstance>* tts() { return &tts_; }
InstanceHolder<mojom::VideoInstance>* video() { return &video_; }
+ InstanceHolder<mojom::VoiceInteractionFrameworkInstance>*
+ voice_interaction_framework() {
+ return &voice_interaction_framework_;
+ }
InstanceHolder<mojom::WallpaperInstance>* wallpaper() { return &wallpaper_; }
private:
@@ -121,6 +126,8 @@ class ArcBridgeService {
InstanceHolder<mojom::TracingInstance> tracing_;
InstanceHolder<mojom::TtsInstance> tts_;
InstanceHolder<mojom::VideoInstance> video_;
+ InstanceHolder<mojom::VoiceInteractionFrameworkInstance>
+ voice_interaction_framework_;
InstanceHolder<mojom::WallpaperInstance> wallpaper_;
DISALLOW_COPY_AND_ASSIGN(ArcBridgeService);
« 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