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

Side by Side Diff: components/arc/user_data/arc_user_data_service.cc

Issue 2165643004: arc: add enterprise_reporting.mojom interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed SessionManagerClient stub RemoveArcData method. Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « components/arc/user_data/arc_user_data_service.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/arc/user_data/arc_user_data_service.h" 5 #include "components/arc/user_data/arc_user_data_service.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "chromeos/chromeos_switches.h" 10 #include "chromeos/chromeos_switches.h"
11 #include "chromeos/cryptohome/cryptohome_parameters.h" 11 #include "chromeos/cryptohome/cryptohome_parameters.h"
12 #include "chromeos/dbus/dbus_thread_manager.h" 12 #include "chromeos/dbus/dbus_thread_manager.h"
13 #include "chromeos/dbus/session_manager_client.h"
14 #include "components/prefs/pref_member.h" 13 #include "components/prefs/pref_member.h"
15 #include "components/signin/core/account_id/account_id.h" 14 #include "components/signin/core/account_id/account_id.h"
16 #include "components/user_manager/user_manager.h" 15 #include "components/user_manager/user_manager.h"
17 16
18 namespace arc { 17 namespace arc {
19 18
20 ArcUserDataService::ArcUserDataService( 19 ArcUserDataService::ArcUserDataService(
21 ArcBridgeService* bridge_service, 20 ArcBridgeService* bridge_service,
22 std::unique_ptr<BooleanPrefMember> arc_enabled_pref, 21 std::unique_ptr<BooleanPrefMember> arc_enabled_pref,
23 const AccountId& account_id) 22 const AccountId& account_id)
24 : ArcService(bridge_service), 23 : ArcService(bridge_service),
25 arc_enabled_pref_(std::move(arc_enabled_pref)), 24 arc_enabled_pref_(std::move(arc_enabled_pref)),
26 primary_user_account_id_(account_id), 25 primary_user_account_id_(account_id),
27 weak_ptr_factory_(this) { 26 weak_ptr_factory_(this) {
28 arc_bridge_service()->AddObserver(this); 27 arc_bridge_service()->AddObserver(this);
29 pref_change_registrar_.Init(arc_enabled_pref_->prefs()); 28 pref_change_registrar_.Init(arc_enabled_pref_->prefs());
30 pref_change_registrar_.Add( 29 pref_change_registrar_.Add(
31 arc_enabled_pref_->GetPrefName(), 30 arc_enabled_pref_->GetPrefName(),
32 base::Bind(&ArcUserDataService::OnOptInPreferenceChanged, 31 base::Bind(&ArcUserDataService::OnOptInPreferenceChanged,
33 weak_ptr_factory_.GetWeakPtr())); 32 weak_ptr_factory_.GetWeakPtr()));
34 ClearIfDisabled(); 33 WipeIfRequired();
35 } 34 }
36 35
37 ArcUserDataService::~ArcUserDataService() { 36 ArcUserDataService::~ArcUserDataService() {
38 DCHECK(thread_checker_.CalledOnValidThread()); 37 DCHECK(thread_checker_.CalledOnValidThread());
39 arc_bridge_service()->RemoveObserver(this); 38 arc_bridge_service()->RemoveObserver(this);
40 } 39 }
41 40
42 void ArcUserDataService::OnBridgeStopped(ArcBridgeService::StopReason reason) { 41 void ArcUserDataService::OnBridgeStopped(ArcBridgeService::StopReason reason) {
43 DCHECK(thread_checker_.CalledOnValidThread()); 42 DCHECK(thread_checker_.CalledOnValidThread());
44 const AccountId& account_id = 43 const AccountId& account_id =
45 user_manager::UserManager::Get()->GetPrimaryUser()->GetAccountId(); 44 user_manager::UserManager::Get()->GetPrimaryUser()->GetAccountId();
46 if (account_id != primary_user_account_id_) { 45 if (account_id != primary_user_account_id_) {
47 LOG(ERROR) << "User preferences not loaded for " 46 LOG(ERROR) << "User preferences not loaded for "
48 << primary_user_account_id_.GetUserEmail() 47 << primary_user_account_id_.GetUserEmail()
49 << ", but current primary user is " << account_id.GetUserEmail(); 48 << ", but current primary user is " << account_id.GetUserEmail();
50 primary_user_account_id_ = EmptyAccountId(); 49 primary_user_account_id_ = EmptyAccountId();
51 return; 50 return;
52 } 51 }
53 ClearIfDisabled(); 52 WipeIfRequired();
54 } 53 }
55 54
56 void ArcUserDataService::ClearIfDisabled() { 55 void ArcUserDataService::RequireUserDataWiped(const ArcDataCallback& callback) {
56 VLOG(1) << "Require ARC user data to be wiped.";
57 arc_user_data_wipe_required_ = true;
58 callback_ = callback;
59 }
60
61 void ArcUserDataService::WipeIfRequired() {
57 DCHECK(thread_checker_.CalledOnValidThread()); 62 DCHECK(thread_checker_.CalledOnValidThread());
58 if (!arc_bridge_service()->stopped()) { 63 if (!arc_bridge_service()->stopped()) {
59 LOG(ERROR) << "ARC instance not stopped, user data can't be cleared"; 64 LOG(ERROR) << "ARC instance not stopped, user data can't be wiped";
60 return; 65 return;
61 } 66 }
62 if ((arc_enabled_pref_->GetValue() && !arc_disabled_) || 67 if ((arc_enabled_pref_->GetValue() && !arc_user_data_wipe_required_) ||
63 base::CommandLine::ForCurrentProcess()->HasSwitch( 68 base::CommandLine::ForCurrentProcess()->HasSwitch(
64 chromeos::switches::kDisableArcDataWipe)) { 69 chromeos::switches::kDisableArcDataWipe)) {
65 return; 70 return;
66 } 71 }
67 arc_disabled_ = false; 72 VLOG(1) << "Wipe ARC user data.";
73 arc_user_data_wipe_required_ = false;
68 const cryptohome::Identification cryptohome_id(primary_user_account_id_); 74 const cryptohome::Identification cryptohome_id(primary_user_account_id_);
69 chromeos::SessionManagerClient* session_manager_client = 75 chromeos::SessionManagerClient* session_manager_client =
70 chromeos::DBusThreadManager::Get()->GetSessionManagerClient(); 76 chromeos::DBusThreadManager::Get()->GetSessionManagerClient();
71 session_manager_client->RemoveArcData(cryptohome_id); 77 session_manager_client->RemoveArcData(cryptohome_id, callback_);
78 callback_.Reset();
72 } 79 }
73 80
74 void ArcUserDataService::OnOptInPreferenceChanged() { 81 void ArcUserDataService::OnOptInPreferenceChanged() {
75 if (!arc_enabled_pref_->GetValue()) 82 if (!arc_enabled_pref_->GetValue())
76 arc_disabled_ = true; 83 arc_user_data_wipe_required_ = true;
77 } 84 }
78 85
79 } // namespace arc 86 } // namespace arc
OLDNEW
« no previous file with comments | « components/arc/user_data/arc_user_data_service.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698