OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "components/signin/core/common/signin_pref_names.h" | 5 #include "components/signin/core/common/signin_pref_names.h" |
6 | 6 |
7 namespace prefs { | 7 namespace prefs { |
8 | 8 |
9 // Boolean identifying whether reverse auto-login is enabled. | 9 // Boolean identifying whether reverse auto-login is enabled. |
10 const char kAutologinEnabled[] = "autologin.enabled"; | 10 const char kAutologinEnabled[] = "autologin.enabled"; |
(...skipping 25 matching lines...) Expand all Loading... |
36 "google.services.username_pattern"; | 36 "google.services.username_pattern"; |
37 | 37 |
38 // Boolean identifying whether reverse auto-logins is enabled. | 38 // Boolean identifying whether reverse auto-logins is enabled. |
39 const char kReverseAutologinEnabled[] = "reverse_autologin.enabled"; | 39 const char kReverseAutologinEnabled[] = "reverse_autologin.enabled"; |
40 | 40 |
41 // List to keep track of emails for which the user has rejected one-click | 41 // List to keep track of emails for which the user has rejected one-click |
42 // sign-in. | 42 // sign-in. |
43 const char kReverseAutologinRejectedEmailList[] = | 43 const char kReverseAutologinRejectedEmailList[] = |
44 "reverse_autologin.rejected_email_list"; | 44 "reverse_autologin.rejected_email_list"; |
45 | 45 |
| 46 // Int64 which tracks, as time from epoch, when last time the user signed in |
| 47 // to the browser. |
| 48 const char kSignedInTime[] = "signin.signedin_time"; |
| 49 |
46 // Boolean which stores if the user is allowed to signin to chrome. | 50 // Boolean which stores if the user is allowed to signin to chrome. |
47 const char kSigninAllowed[] = "signin.allowed"; | 51 const char kSigninAllowed[] = "signin.allowed"; |
48 | 52 |
49 } // namespace prefs | 53 } // namespace prefs |
OLD | NEW |