| 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_FAKE_SUPERVISED_USER_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_SUPERVISED_USER_MANAGER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_SUPERVISED_USER_MANAGER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_SUPERVISED_USER_MANAGER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "chrome/browser/chromeos/login/supervised_user_manager.h" | 10 #include "chrome/browser/chromeos/login/supervised_user_manager.h" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 OVERRIDE; | 31 OVERRIDE; |
| 32 virtual std::string GetManagerUserId(const std::string& user_id) const | 32 virtual std::string GetManagerUserId(const std::string& user_id) const |
| 33 OVERRIDE; | 33 OVERRIDE; |
| 34 virtual std::string GetManagerDisplayEmail(const std::string& user_id) const | 34 virtual std::string GetManagerDisplayEmail(const std::string& user_id) const |
| 35 OVERRIDE; | 35 OVERRIDE; |
| 36 virtual void StartCreationTransaction(const base::string16& display_name) | 36 virtual void StartCreationTransaction(const base::string16& display_name) |
| 37 OVERRIDE {} | 37 OVERRIDE {} |
| 38 virtual void SetCreationTransactionUserId(const std::string& user_id) | 38 virtual void SetCreationTransactionUserId(const std::string& user_id) |
| 39 OVERRIDE {} | 39 OVERRIDE {} |
| 40 virtual void CommitCreationTransaction() OVERRIDE {} | 40 virtual void CommitCreationTransaction() OVERRIDE {} |
| 41 virtual SupervisedUserAuthentication* GetAuthentication() OVERRIDE; |
| 42 virtual void GetPasswordInformation( |
| 43 const std::string& user_id, |
| 44 base::DictionaryValue* result) OVERRIDE {} |
| 45 virtual void SetPasswordInformation( |
| 46 const std::string& user_id, |
| 47 const base::DictionaryValue* password_info) OVERRIDE {} |
| 41 | 48 |
| 42 private: | 49 private: |
| 43 DISALLOW_COPY_AND_ASSIGN(FakeSupervisedUserManager); | 50 DISALLOW_COPY_AND_ASSIGN(FakeSupervisedUserManager); |
| 44 }; | 51 }; |
| 45 | 52 |
| 46 } // namespace chromeos | 53 } // namespace chromeos |
| 47 | 54 |
| 48 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_SUPERVISED_USER_MANAGER_H_ | 55 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_SUPERVISED_USER_MANAGER_H_ |
| OLD | NEW |