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

Side by Side Diff: chrome/browser/chromeos/login/test_login_utils.h

Issue 148183013: Use per-user nssdb in onc certificate importer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 10 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 | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698