Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "components/arc/user_data/arc_user_data_service.h" | |
| 6 | |
| 7 #include "chromeos/cryptohome/cryptohome_parameters.h" | |
| 8 #include "chromeos/dbus/dbus_thread_manager.h" | |
| 9 #include "chromeos/dbus/session_manager_client.h" | |
| 10 #include "components/prefs/pref_member.h" | |
| 11 #include "components/signin/core/account_id/account_id.h" | |
| 12 #include "components/user_manager/user_manager.h" | |
| 13 | |
| 14 namespace arc { | |
| 15 | |
| 16 ArcUserDataService::ArcUserDataService( | |
| 17 ArcBridgeService* bridge_service, | |
| 18 std::unique_ptr<BooleanPrefMember> arc_enabled_pref) | |
| 19 : ArcService(bridge_service), | |
| 20 arc_enabled_pref_(std::move(arc_enabled_pref)) {} | |
|
hidehiko
2016/06/14 05:13:02
I think, you accidentally removed AddObserver from
dspaid
2016/06/14 05:40:54
Done.
| |
| 21 | |
| 22 ArcUserDataService::~ArcUserDataService() { | |
| 23 DCHECK(thread_checker_.CalledOnValidThread()); | |
| 24 arc_bridge_service()->RemoveObserver(this); | |
| 25 } | |
| 26 | |
| 27 void ArcUserDataService::OnBridgeStopped() { | |
| 28 DCHECK(thread_checker_.CalledOnValidThread()); | |
| 29 const AccountId& account_id = | |
| 30 user_manager::UserManager::Get()->GetPrimaryUser()->GetAccountId(); | |
| 31 if (account_id != primary_user_account_id_) { | |
| 32 LOG(ERROR) << "User preferences not loaded for " | |
| 33 << primary_user_account_id_.GetUserEmail() | |
| 34 << ", but current primary user is " << account_id.GetUserEmail(); | |
| 35 primary_user_account_id_ = EmptyAccountId(); | |
| 36 return; | |
| 37 } | |
| 38 ClearIfDisabled(); | |
| 39 } | |
| 40 | |
| 41 void ArcUserDataService::OnPrimaryUserProfilePrepared( | |
| 42 const AccountId& account_id) { | |
|
hidehiko
2016/06/14 05:13:01
Could you pass this to the ctor, too, to be aligne
dspaid
2016/06/14 05:40:54
Done.
| |
| 43 primary_user_account_id_ = account_id; | |
| 44 ClearIfDisabled(); | |
|
hidehiko
2016/06/14 05:13:01
nit: Maybe move this to ctor, too?
dspaid
2016/06/14 05:40:54
Done.
| |
| 45 } | |
| 46 | |
| 47 void ArcUserDataService::ClearIfDisabled() { | |
| 48 DCHECK(thread_checker_.CalledOnValidThread()); | |
| 49 if (arc_bridge_service()->state() != ArcBridgeService::State::STOPPED) { | |
| 50 LOG(ERROR) << "ARC instance not stopped, user data can't be cleared"; | |
| 51 return; | |
| 52 } | |
| 53 if (arc_enabled_pref_->GetValue()) | |
| 54 return; | |
| 55 const cryptohome::Identification cryptohome_id(primary_user_account_id_); | |
| 56 chromeos::SessionManagerClient* session_manager_client = | |
| 57 chromeos::DBusThreadManager::Get()->GetSessionManagerClient(); | |
| 58 session_manager_client->RemoveArcData(cryptohome_id); | |
| 59 } | |
| 60 | |
| 61 } // namespace arc | |
| OLD | NEW |