OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_LOGIN_UTILS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_UTILS_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_UTILS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_UTILS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
97 // TODO(nkostylev): Cleanup after WebUI login migration is complete. | 97 // TODO(nkostylev): Cleanup after WebUI login migration is complete. |
98 virtual scoped_refptr<Authenticator> CreateAuthenticator( | 98 virtual scoped_refptr<Authenticator> CreateAuthenticator( |
99 LoginStatusConsumer* consumer) = 0; | 99 LoginStatusConsumer* consumer) = 0; |
100 | 100 |
101 // Restores authentication session after crash. | 101 // Restores authentication session after crash. |
102 virtual void RestoreAuthenticationSession(Profile* profile) = 0; | 102 virtual void RestoreAuthenticationSession(Profile* profile) = 0; |
103 | 103 |
104 // Initialize RLZ. | 104 // Initialize RLZ. |
105 virtual void InitRlzDelayed(Profile* user_profile) = 0; | 105 virtual void InitRlzDelayed(Profile* user_profile) = 0; |
106 | 106 |
107 // Initiates process of starting CertLoader for the user_profile. | 107 // Gets the user's NSSDB and passes them to |CertLoader| and |
108 virtual void StartCertLoader(Profile* user_profile) = 0; | 108 // |UserNetworkConfigurationUpdater|. Both of these are available for the |
109 // primary user only. | |
110 virtual void InitNSSCertDatabaseUsers(Profile* user_profile) = 0; | |
tbarzic
2014/02/04 23:44:56
I currently lack inspiration for a better name :(
| |
109 }; | 111 }; |
110 | 112 |
111 } // namespace chromeos | 113 } // namespace chromeos |
112 | 114 |
113 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_UTILS_H_ | 115 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_UTILS_H_ |
OLD | NEW |