OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_USER_MANAGER_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_USER_MANAGER_IMPL_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_USER_MANAGER_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_USER_MANAGER_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "chrome/browser/chromeos/login/managed/supervised_user_authentication.h
" |
12 #include "chrome/browser/chromeos/login/supervised_user_manager.h" | 13 #include "chrome/browser/chromeos/login/supervised_user_manager.h" |
13 | 14 |
14 namespace chromeos { | 15 namespace chromeos { |
15 | 16 |
16 class CrosSettings; | 17 class CrosSettings; |
17 class UserManagerImpl; | 18 class UserManagerImpl; |
18 | 19 |
19 // Implementation of the UserManager. | 20 // Implementation of the UserManager. |
20 class SupervisedUserManagerImpl | 21 class SupervisedUserManagerImpl |
21 : public SupervisedUserManager { | 22 : public SupervisedUserManager { |
(...skipping 13 matching lines...) Expand all Loading... |
35 virtual base::string16 GetManagerDisplayName(const std::string& user_id) const | 36 virtual base::string16 GetManagerDisplayName(const std::string& user_id) const |
36 OVERRIDE; | 37 OVERRIDE; |
37 virtual std::string GetManagerUserId(const std::string& user_id) const | 38 virtual std::string GetManagerUserId(const std::string& user_id) const |
38 OVERRIDE; | 39 OVERRIDE; |
39 virtual std::string GetManagerDisplayEmail(const std::string& user_id) const | 40 virtual std::string GetManagerDisplayEmail(const std::string& user_id) const |
40 OVERRIDE; | 41 OVERRIDE; |
41 virtual void StartCreationTransaction(const base::string16& display_name) OVER
RIDE; | 42 virtual void StartCreationTransaction(const base::string16& display_name) OVER
RIDE; |
42 virtual void SetCreationTransactionUserId(const std::string& user_id) | 43 virtual void SetCreationTransactionUserId(const std::string& user_id) |
43 OVERRIDE; | 44 OVERRIDE; |
44 virtual void CommitCreationTransaction() OVERRIDE; | 45 virtual void CommitCreationTransaction() OVERRIDE; |
| 46 virtual SupervisedUserAuthentication* GetAuthentication() OVERRIDE; |
| 47 virtual void GetPasswordInformation(const std::string& user_id, |
| 48 base::DictionaryValue* result) OVERRIDE; |
| 49 virtual void SetPasswordInformation( |
| 50 const std::string& user_id, |
| 51 const base::DictionaryValue* password_info) OVERRIDE; |
45 | 52 |
46 private: | 53 private: |
47 friend class UserManager; | 54 friend class UserManager; |
48 friend class UserManagerImpl; | 55 friend class UserManagerImpl; |
49 | 56 |
50 explicit SupervisedUserManagerImpl(UserManagerImpl* owner); | 57 explicit SupervisedUserManagerImpl(UserManagerImpl* owner); |
51 | 58 |
52 // Returns true if there is non-committed user creation transaction. | 59 // Returns true if there is non-committed user creation transaction. |
53 bool HasFailedUserCreationTransaction(); | 60 bool HasFailedUserCreationTransaction(); |
54 | 61 |
55 // Attempts to clean up data that could be left from failed user creation. | 62 // Attempts to clean up data that could be left from failed user creation. |
56 void RollbackUserCreationTransaction(); | 63 void RollbackUserCreationTransaction(); |
57 | 64 |
58 void RemoveNonCryptohomeData(const std::string& user_id); | 65 void RemoveNonCryptohomeData(const std::string& user_id); |
59 | 66 |
60 bool CheckForFirstRun(const std::string& user_id); | 67 bool CheckForFirstRun(const std::string& user_id); |
61 | 68 |
62 // Update name if this user is manager of some managed users. | 69 // Update name if this user is manager of some managed users. |
63 void UpdateManagerName(const std::string& manager_id, | 70 void UpdateManagerName(const std::string& manager_id, |
64 const base::string16& new_display_name); | 71 const base::string16& new_display_name); |
65 | 72 |
| 73 bool GetUserStringValue(const std::string& user_id, |
| 74 const char* key, |
| 75 std::string* out_value) const; |
| 76 |
| 77 void SetUserStringValue(const std::string& user_id, |
| 78 const char* key, |
| 79 const std::string& value); |
| 80 |
| 81 bool GetUserIntegerValue(const std::string& user_id, |
| 82 const char* key, |
| 83 int* out_value) const; |
| 84 |
| 85 void SetUserIntegerValue(const std::string& user_id, |
| 86 const char* key, |
| 87 const int value); |
| 88 |
| 89 void CleanPref(const std::string& user_id, |
| 90 const char* key); |
| 91 |
66 UserManagerImpl* owner_; | 92 UserManagerImpl* owner_; |
67 | 93 |
68 // Interface to the signed settings store. | 94 // Interface to the signed settings store. |
69 CrosSettings* cros_settings_; | 95 CrosSettings* cros_settings_; |
70 | 96 |
| 97 scoped_ptr<SupervisedUserAuthentication> authentication_; |
| 98 |
71 DISALLOW_COPY_AND_ASSIGN(SupervisedUserManagerImpl); | 99 DISALLOW_COPY_AND_ASSIGN(SupervisedUserManagerImpl); |
72 }; | 100 }; |
73 | 101 |
74 } // namespace chromeos | 102 } // namespace chromeos |
75 | 103 |
76 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_USER_MANAGER_IMPL_H_ | 104 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_USER_MANAGER_IMPL_H_ |
OLD | NEW |