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_TEST_LOGIN_UTILS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_TEST_LOGIN_UTILS_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_TEST_LOGIN_UTILS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_TEST_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 28 matching lines...) Expand all Loading... |
39 | 39 |
40 virtual void SetFirstLoginPrefs(PrefService* prefs) OVERRIDE {} | 40 virtual void SetFirstLoginPrefs(PrefService* prefs) OVERRIDE {} |
41 | 41 |
42 virtual scoped_refptr<Authenticator> CreateAuthenticator( | 42 virtual scoped_refptr<Authenticator> CreateAuthenticator( |
43 LoginStatusConsumer* consumer) OVERRIDE; | 43 LoginStatusConsumer* consumer) OVERRIDE; |
44 | 44 |
45 virtual void RestoreAuthenticationSession(Profile* profile) OVERRIDE {} | 45 virtual void RestoreAuthenticationSession(Profile* profile) OVERRIDE {} |
46 | 46 |
47 virtual void InitRlzDelayed(Profile* user_profile) OVERRIDE; | 47 virtual void InitRlzDelayed(Profile* user_profile) OVERRIDE; |
48 | 48 |
49 virtual void StartCertLoader(Profile* user_profile) OVERRIDE; | 49 virtual void InitNSSCertDatabaseUsers(Profile* user_profile) OVERRIDE; |
50 | 50 |
51 private: | 51 private: |
52 std::string expected_username_; | 52 std::string expected_username_; |
53 std::string expected_password_; | 53 std::string expected_password_; |
54 std::string auth_token_; | 54 std::string auth_token_; |
55 | 55 |
56 DISALLOW_COPY_AND_ASSIGN(TestLoginUtils); | 56 DISALLOW_COPY_AND_ASSIGN(TestLoginUtils); |
57 }; | 57 }; |
58 | 58 |
59 } // namespace chromeos | 59 } // namespace chromeos |
60 | 60 |
61 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_TEST_LOGIN_UTILS_H_ | 61 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_TEST_LOGIN_UTILS_H_ |
OLD | NEW |