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

Unified Diff: components/arc/arc_bridge_service.cc

Issue 2195653002: arc: add enterprise_reporting.mojom interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2785
Patch Set: Corrected upstream branch. Created 4 years, 5 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_service.h ('k') | components/arc/arc_service_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « components/arc/arc_bridge_service.h ('k') | components/arc/arc_service_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698