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 // An integer property indicating the state of account id migration from |
| 10 // email to gaia id for the the profile. See account_tracker_service.h |
| 11 // for possible values. |
| 12 const char kAccountIdMigrationState[] = "account_id_migration_state"; |
| 13 |
9 // Boolean identifying whether reverse auto-login is enabled. | 14 // Boolean identifying whether reverse auto-login is enabled. |
10 const char kAutologinEnabled[] = "autologin.enabled"; | 15 const char kAutologinEnabled[] = "autologin.enabled"; |
11 | 16 |
12 // String the identifies the last user that logged into sync and other | 17 // String the identifies the last user that logged into sync and other |
13 // google services. As opposed to kGoogleServicesUsername, this value is not | 18 // google services. As opposed to kGoogleServicesUsername, this value is not |
14 // cleared on signout, but while the user is signed in the two values will | 19 // cleared on signout, but while the user is signed in the two values will |
15 // be the same. | 20 // be the same. |
16 const char kGoogleServicesLastUsername[] = "google.services.last_username"; | 21 const char kGoogleServicesLastUsername[] = "google.services.last_username"; |
17 | 22 |
18 // Obfuscated account ID that identifies the current user logged into sync and | 23 // Obfuscated account ID that identifies the current user logged into sync and |
(...skipping 25 matching lines...) Expand all Loading... |
44 "reverse_autologin.rejected_email_list"; | 49 "reverse_autologin.rejected_email_list"; |
45 | 50 |
46 // Int64 which tracks, as time from epoch, when last time the user signed in | 51 // Int64 which tracks, as time from epoch, when last time the user signed in |
47 // to the browser. | 52 // to the browser. |
48 const char kSignedInTime[] = "signin.signedin_time"; | 53 const char kSignedInTime[] = "signin.signedin_time"; |
49 | 54 |
50 // Boolean which stores if the user is allowed to signin to chrome. | 55 // Boolean which stores if the user is allowed to signin to chrome. |
51 const char kSigninAllowed[] = "signin.allowed"; | 56 const char kSigninAllowed[] = "signin.allowed"; |
52 | 57 |
53 } // namespace prefs | 58 } // namespace prefs |
OLD | NEW |