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

Unified Diff: components/arc/arc_bridge_service.h

Issue 2559663002: Support focus highlight in Android window (Closed)
Patch Set: Created 4 years 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/arc_bridge_service.h
diff --git a/components/arc/arc_bridge_service.h b/components/arc/arc_bridge_service.h
index acd3c001df5b8cc2df7f54163f45e6f1635dc502..7648760b854efddd3bdccbb1a43888b3ff794d9b 100644
--- a/components/arc/arc_bridge_service.h
+++ b/components/arc/arc_bridge_service.h
@@ -37,6 +37,7 @@ class ClipboardInstance;
class CrashCollectorInstance;
class EnterpriseReportingInstance;
class FileSystemInstance;
+class FocusHighlightInstance;
class ImeInstance;
class IntentHelperInstance;
class KioskInstance;
@@ -140,6 +141,9 @@ class ArcBridgeService {
InstanceHolder<mojom::FileSystemInstance>* file_system() {
return &file_system_;
}
+ InstanceHolder<mojom::FocusHighlightInstance>* focus_highlight() {
+ return &focus_highlight_;
+ }
InstanceHolder<mojom::ImeInstance>* ime() { return &ime_; }
InstanceHolder<mojom::IntentHelperInstance>* intent_helper() {
return &intent_helper_;
@@ -219,6 +223,7 @@ class ArcBridgeService {
InstanceHolder<mojom::CrashCollectorInstance> crash_collector_;
InstanceHolder<mojom::EnterpriseReportingInstance> enterprise_reporting_;
InstanceHolder<mojom::FileSystemInstance> file_system_;
+ InstanceHolder<mojom::FocusHighlightInstance> focus_highlight_;
InstanceHolder<mojom::ImeInstance> ime_;
InstanceHolder<mojom::IntentHelperInstance> intent_helper_;
InstanceHolder<mojom::KioskInstance> kiosk_;

Powered by Google App Engine
This is Rietveld 408576698