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

Unified Diff: components/arc/arc_bridge_service.h

Issue 2559663002: Support focus highlight in Android window (Closed)
Patch Set: Address comments. Created 3 years, 11 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/accessibility_helper.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 3f4a5f5a38dbb5a62b98f646a2626f39d4189d38..b4b9fb1cf12aa5269e24a3270283ecaca8210068 100644
--- a/components/arc/arc_bridge_service.h
+++ b/components/arc/arc_bridge_service.h
@@ -21,6 +21,7 @@ namespace mojom {
// Instead of including components/arc/common/arc_bridge.mojom.h, list all the
// instance classes here for faster build.
+class AccessibilityHelperInstance;
class AppInstance;
class AudioInstance;
class AuthInstance;
@@ -61,6 +62,9 @@ class ArcBridgeService {
// Returns true if ARC is available on the current board.
static bool GetAvailable(const base::CommandLine* command_line);
+ InstanceHolder<mojom::AccessibilityHelperInstance>* accessibility_helper() {
+ return &accessibility_helper_;
+ }
InstanceHolder<mojom::AppInstance>* app() { return &app_; }
InstanceHolder<mojom::AudioInstance>* audio() { return &audio_; }
InstanceHolder<mojom::AuthInstance>* auth() { return &auth_; }
@@ -103,6 +107,7 @@ class ArcBridgeService {
InstanceHolder<mojom::WallpaperInstance>* wallpaper() { return &wallpaper_; }
private:
+ InstanceHolder<mojom::AccessibilityHelperInstance> accessibility_helper_;
InstanceHolder<mojom::AppInstance> app_;
InstanceHolder<mojom::AudioInstance> audio_;
InstanceHolder<mojom::AuthInstance> auth_;
« no previous file with comments | « components/arc/arc_bridge_host_impl.cc ('k') | components/arc/common/accessibility_helper.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698