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

Side by Side Diff: components/signin/core/common/signin_pref_names.cc

Issue 475763005: Add flag to track migration from email to gaia id. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 6 years, 4 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
« no previous file with comments | « components/signin/core/common/signin_pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « components/signin/core/common/signin_pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698