Reland [Sync] Refactoring polling to be reliable.
[chromium-blink-merge.git] / components / sync_driver / pref_names.cc
blob1a5727af138bd46c87fb71a6c080845fa7add18f
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
3 // found in the LICENSE file.
5 #include "components/sync_driver/pref_names.h"
7 namespace sync_driver {
9 namespace prefs {
11 // 64-bit integer serialization of the base::Time when the last sync occurred.
12 const char kSyncLastSyncedTime[] = "sync.last_synced_time";
14 // 64-bit integer serialization of the base::Time of the last sync poll.
15 const char kSyncLastPollTime[] = "sync.last_poll_time";
17 // Boolean specifying whether the user finished setting up sync.
18 const char kSyncHasSetupCompleted[] = "sync.has_setup_completed";
20 // Boolean specifying whether sync has an auth error.
21 const char kSyncHasAuthError[] = "sync.has_auth_error";
23 // Boolean specifying whether to automatically sync all data types (including
24 // future ones, as they're added). If this is true, the following preferences
25 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored.
26 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced";
28 // Booleans specifying whether the user has selected to sync the following
29 // datatypes.
30 const char kSyncAppList[] = "sync.app_list";
31 const char kSyncAppNotifications[] = "sync.app_notifications";
32 const char kSyncAppSettings[] = "sync.app_settings";
33 const char kSyncApps[] = "sync.apps";
34 const char kSyncArticles[] = "sync.articles";
35 const char kSyncAutofillProfile[] = "sync.autofill_profile";
36 const char kSyncAutofillWallet[] = "sync.autofill_wallet";
37 const char kSyncAutofill[] = "sync.autofill";
38 const char kSyncBookmarks[] = "sync.bookmarks";
39 const char kSyncDeviceInfo[] = "sync.device_info";
40 const char kSyncDictionary[] = "sync.dictionary";
41 const char kSyncExtensionSettings[] = "sync.extension_settings";
42 const char kSyncExtensions[] = "sync.extensions";
43 const char kSyncFaviconImages[] = "sync.favicon_images";
44 const char kSyncFaviconTracking[] = "sync.favicon_tracking";
45 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives";
46 const char kSyncPasswords[] = "sync.passwords";
47 const char kSyncPreferences[] = "sync.preferences";
48 const char kSyncPriorityPreferences[] = "sync.priority_preferences";
49 const char kSyncSearchEngines[] = "sync.search_engines";
50 const char kSyncSessions[] = "sync.sessions";
51 const char kSyncSupervisedUserSettings[] = "sync.managed_user_settings";
52 const char kSyncSupervisedUserSharedSettings[] =
53 "sync.managed_user_shared_settings";
54 const char kSyncSupervisedUserWhitelists[] =
55 "sync.managed_user_whitelists";
56 const char kSyncSupervisedUsers[] = "sync.managed_users";
57 const char kSyncSyncedNotificationAppInfo[] =
58 "sync.synced_notification_app_info";
59 const char kSyncSyncedNotifications[] = "sync.synced_notifications";
60 const char kSyncTabs[] = "sync.tabs";
61 const char kSyncThemes[] = "sync.themes";
62 const char kSyncTypedUrls[] = "sync.typed_urls";
63 const char kSyncWifiCredentials[] = "sync.wifi_credentials";
65 // Boolean used by enterprise configuration management in order to lock down
66 // sync.
67 const char kSyncManaged[] = "sync.managed";
69 // Boolean to prevent sync from automatically starting up. This is
70 // used when sync is disabled by the user via the privacy dashboard.
71 const char kSyncSuppressStart[] = "sync.suppress_start";
73 // A string that can be used to restore sync encryption infrastructure on
74 // startup so that the user doesn't need to provide credentials on each start.
75 const char kSyncEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token";
77 // Same as kSyncEncryptionBootstrapToken, but derived from the keystore key,
78 // so we don't have to do a GetKey command at restart.
79 const char kSyncKeystoreEncryptionBootstrapToken[] =
80 "sync.keystore_encryption_bootstrap_token";
82 // Boolean tracking whether the user chose to specify a secondary encryption
83 // passphrase.
84 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase";
86 // The GUID session sync will use to identify this client, even across sync
87 // disable/enable events.
88 const char kSyncSessionsGUID[] = "sync.session_sync_guid";
90 #if defined(OS_CHROMEOS)
91 // A string that is used to store first-time sync startup after once sync is
92 // disabled. This will be refreshed every sign-in.
93 const char kSyncSpareBootstrapToken[] = "sync.spare_bootstrap_token";
94 #endif // defined(OS_CHROMEOS)
96 // Stores how many times to try rollback before giving up.
97 const char kSyncRemainingRollbackTries[] = "sync.remaining_rollback_tries";
99 // Stores the timestamp of first sync.
100 const char kSyncFirstSyncTime[] = "sync.first_sync_time";
102 // Stores whether a platform specific passphrase error prompt has been shown to
103 // the user (e.g. an Android system notification). Used for out of band prompts
104 // that we only want to use once.
105 const char kSyncPassphrasePrompted[] = "sync.passphrase_prompted";
107 } // namespace prefs
109 } // namespace sync_driver