| 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_;
|
|
|