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

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

Issue 2693013006: arc: Add cryptohome_id to EmitArcBooted. (Closed)
Patch Set: 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
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 782625ea2d41139b117080feb9012551103ac95e..a2262ebb60b495cba65bf3c8c81f5c4aae025ccd 100644
--- a/chrome/browser/chromeos/arc/arc_service_launcher.cc
+++ b/chrome/browser/chromeos/arc/arc_service_launcher.cc
@@ -99,8 +99,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()));
@@ -148,6 +146,9 @@ void ArcServiceLauncher::OnPrimaryUserProfilePrepared(Profile* profile) {
arc_service_manager_->arc_bridge_service(),
multi_user_util::GetAccountIdFromProfile(profile)));
+ arc_service_manager_->AddService(base::MakeUnique<ArcBootPhaseMonitorBridge>(
Luis Héctor Chávez 2017/02/15 19:02:11 nit: add "// List in lexicographical order" in L14
xzhou 2017/02/16 18:34:49 Done.
+ arc_service_manager_->arc_bridge_service(), profile));
+
// Kiosk apps should be run only for kiosk sessions.
if (user_manager::UserManager::Get()->IsLoggedInAsArcKioskApp()) {
// ArcKioskAppService is BrowserContextKeyedService so that it's destroyed

Powered by Google App Engine
This is Rietveld 408576698