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/arc/arc_service_manager.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 const ArcServiceManager* arc_service_manager, |
| 18 ArcBridgeService* bridge_service) |
| 19 : ArcService(bridge_service), |
| 20 arc_service_manager_(arc_service_manager) { |
| 21 arc_bridge_service()->AddObserver(this); |
| 22 } |
| 23 |
| 24 ArcUserDataService::~ArcUserDataService() { |
| 25 DCHECK(thread_checker_.CalledOnValidThread()); |
| 26 arc_bridge_service()->RemoveObserver(this); |
| 27 } |
| 28 |
| 29 void ArcUserDataService::OnBridgeStopped() { |
| 30 DCHECK(thread_checker_.CalledOnValidThread()); |
| 31 const AccountId& account_id = |
| 32 user_manager::UserManager::Get()->GetPrimaryUser()->GetAccountId(); |
| 33 if (account_id != primary_user_account_id_) { |
| 34 LOG(ERROR) << "User preferences not loaded for " |
| 35 << primary_user_account_id_.GetUserEmail() |
| 36 << ", but current primary user is " << account_id.GetUserEmail(); |
| 37 primary_user_account_id_ = EmptyAccountId(); |
| 38 return; |
| 39 } |
| 40 ClearIfDisabled(); |
| 41 } |
| 42 |
| 43 void ArcUserDataService::OnPrimaryUserProfilePrepared( |
| 44 const AccountId& account_id) { |
| 45 primary_user_account_id_ = account_id; |
| 46 ClearIfDisabled(); |
| 47 } |
| 48 |
| 49 void ArcUserDataService::ClearIfDisabled() { |
| 50 DCHECK(thread_checker_.CalledOnValidThread()); |
| 51 if (arc_bridge_service()->state() != ArcBridgeService::State::STOPPED) { |
| 52 LOG(ERROR) << "ARC instance not stopped, user data can't be cleared"; |
| 53 return; |
| 54 } |
| 55 if (arc_service_manager_->IsArcEnabled()) |
| 56 return; |
| 57 const cryptohome::Identification cryptohome_id(primary_user_account_id_); |
| 58 chromeos::SessionManagerClient* session_manager_client = |
| 59 chromeos::DBusThreadManager::Get()->GetSessionManagerClient(); |
| 60 session_manager_client->RemoveArcData(cryptohome_id); |
| 61 } |
| 62 |
| 63 } // namespace arc |
OLD | NEW |