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

Unified Diff: chrome/browser/chromeos/arc/arc_service_launcher.cc

Issue 2693013006: arc: Add cryptohome_id to EmitArcBooted. (Closed)
Patch Set: Address Luis's comments. Created 3 years, 10 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 | « no previous file | chrome/browser/chromeos/arc/boot_phase_monitor/arc_boot_phase_monitor_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/arc/arc_service_launcher.cc
diff --git a/chrome/browser/chromeos/arc/arc_service_launcher.cc b/chrome/browser/chromeos/arc/arc_service_launcher.cc
index 52541dbe826c851290bf03bc56dad626d5deb1fe..cc6f0e53578dee5c8b9308e0c73d9cd312d2b188 100644
--- a/chrome/browser/chromeos/arc/arc_service_launcher.cc
+++ b/chrome/browser/chromeos/arc/arc_service_launcher.cc
@@ -100,8 +100,6 @@ void ArcServiceLauncher::Initialize() {
arc_service_manager_->AddService(
base::MakeUnique<ArcBootErrorNotification>(arc_bridge_service));
arc_service_manager_->AddService(
- base::MakeUnique<ArcBootPhaseMonitorBridge>(arc_bridge_service));
- arc_service_manager_->AddService(
base::MakeUnique<ArcClipboardBridge>(arc_bridge_service));
arc_service_manager_->AddService(base::MakeUnique<ArcCrashCollectorBridge>(
arc_bridge_service, arc_service_manager_->blocking_task_runner()));
@@ -145,6 +143,10 @@ void ArcServiceLauncher::Initialize() {
void ArcServiceLauncher::OnPrimaryUserProfilePrepared(Profile* profile) {
DCHECK(arc_service_manager_);
+ // List in lexicographical order
+ arc_service_manager_->AddService(base::MakeUnique<ArcBootPhaseMonitorBridge>(
+ arc_service_manager_->arc_bridge_service(),
+ multi_user_util::GetAccountIdFromProfile(profile)));
arc_service_manager_->AddService(base::MakeUnique<ArcNotificationManager>(
arc_service_manager_->arc_bridge_service(),
multi_user_util::GetAccountIdFromProfile(profile)));
« no previous file with comments | « no previous file | chrome/browser/chromeos/arc/boot_phase_monitor/arc_boot_phase_monitor_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698