| Index: components/arc/arc_bridge_service.cc
|
| diff --git a/components/arc/arc_bridge_service.cc b/components/arc/arc_bridge_service.cc
|
| index 08ef8fd6f22418f8da34ac405ee34db667649cf7..c2fe6c5e90659ff5260a497be77ea95f6ffab485 100644
|
| --- a/components/arc/arc_bridge_service.cc
|
| +++ b/components/arc/arc_bridge_service.cc
|
| @@ -96,6 +96,11 @@ void ArcBridgeService::OnCrashCollectorInstanceReady(
|
| crash_collector_.OnInstanceReady(std::move(crash_collector_ptr));
|
| }
|
|
|
| +void ArcBridgeService::OnEnterpriseReportingInstanceReady(
|
| + mojom::EnterpriseReportingInstancePtr enterprise_reporting_ptr) {
|
| + enterprise_reporting_.OnInstanceReady(std::move(enterprise_reporting_ptr));
|
| +}
|
| +
|
| void ArcBridgeService::OnFileSystemInstanceReady(
|
| mojom::FileSystemInstancePtr file_system_ptr) {
|
| DCHECK(CalledOnValidThread());
|
| @@ -208,6 +213,7 @@ void ArcBridgeService::CloseAllChannels() {
|
| bluetooth_.CloseChannel();
|
| clipboard_.CloseChannel();
|
| crash_collector_.CloseChannel();
|
| + enterprise_reporting_.CloseChannel();
|
| file_system_.CloseChannel();
|
| ime_.CloseChannel();
|
| intent_helper_.CloseChannel();
|
|
|