| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "components/sync_driver/pref_names.h" | 6 #include "components/sync/driver/pref_names.h" |
| 7 | 7 |
| 8 namespace sync_driver { | 8 namespace sync_driver { |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| 11 | 11 |
| 12 // 64-bit integer serialization of the base::Time when the last sync occurred. | 12 // 64-bit integer serialization of the base::Time when the last sync occurred. |
| 13 const char kSyncLastSyncedTime[] = "sync.last_synced_time"; | 13 const char kSyncLastSyncedTime[] = "sync.last_synced_time"; |
| 14 | 14 |
| 15 // 64-bit integer serialization of the base::Time of the last sync poll. | 15 // 64-bit integer serialization of the base::Time of the last sync poll. |
| 16 const char kSyncLastPollTime[] = "sync.last_poll_time"; | 16 const char kSyncLastPollTime[] = "sync.last_poll_time"; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 47 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; | 47 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; |
| 48 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; | 48 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; |
| 49 const char kSyncPasswords[] = "sync.passwords"; | 49 const char kSyncPasswords[] = "sync.passwords"; |
| 50 const char kSyncPreferences[] = "sync.preferences"; | 50 const char kSyncPreferences[] = "sync.preferences"; |
| 51 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; | 51 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; |
| 52 const char kSyncSearchEngines[] = "sync.search_engines"; | 52 const char kSyncSearchEngines[] = "sync.search_engines"; |
| 53 const char kSyncSessions[] = "sync.sessions"; | 53 const char kSyncSessions[] = "sync.sessions"; |
| 54 const char kSyncSupervisedUserSettings[] = "sync.managed_user_settings"; | 54 const char kSyncSupervisedUserSettings[] = "sync.managed_user_settings"; |
| 55 const char kSyncSupervisedUserSharedSettings[] = | 55 const char kSyncSupervisedUserSharedSettings[] = |
| 56 "sync.managed_user_shared_settings"; | 56 "sync.managed_user_shared_settings"; |
| 57 const char kSyncSupervisedUserWhitelists[] = | 57 const char kSyncSupervisedUserWhitelists[] = "sync.managed_user_whitelists"; |
| 58 "sync.managed_user_whitelists"; | |
| 59 const char kSyncSupervisedUsers[] = "sync.managed_users"; | 58 const char kSyncSupervisedUsers[] = "sync.managed_users"; |
| 60 const char kSyncSyncedNotificationAppInfo[] = | 59 const char kSyncSyncedNotificationAppInfo[] = |
| 61 "sync.synced_notification_app_info"; | 60 "sync.synced_notification_app_info"; |
| 62 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; | 61 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; |
| 63 const char kSyncTabs[] = "sync.tabs"; | 62 const char kSyncTabs[] = "sync.tabs"; |
| 64 const char kSyncThemes[] = "sync.themes"; | 63 const char kSyncThemes[] = "sync.themes"; |
| 65 const char kSyncTypedUrls[] = "sync.typed_urls"; | 64 const char kSyncTypedUrls[] = "sync.typed_urls"; |
| 66 const char kSyncWifiCredentials[] = "sync.wifi_credentials"; | 65 const char kSyncWifiCredentials[] = "sync.wifi_credentials"; |
| 67 | 66 |
| 68 // Boolean used by enterprise configuration management in order to lock down | 67 // Boolean used by enterprise configuration management in order to lock down |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 // Updated Nigori state after user entering passphrase. This Nigori state should | 119 // Updated Nigori state after user entering passphrase. This Nigori state should |
| 121 // be persisted across restarts and passed to backend when it is initialized | 120 // be persisted across restarts and passed to backend when it is initialized |
| 122 // after directory cleanup. Preference contains base64 encoded serialized | 121 // after directory cleanup. Preference contains base64 encoded serialized |
| 123 // sync_pb::NigoriSpecifics. | 122 // sync_pb::NigoriSpecifics. |
| 124 const char kSyncNigoriStateForPassphraseTransition[] = | 123 const char kSyncNigoriStateForPassphraseTransition[] = |
| 125 "sync.nigori_state_for_passphrase_transition"; | 124 "sync.nigori_state_for_passphrase_transition"; |
| 126 | 125 |
| 127 } // namespace prefs | 126 } // namespace prefs |
| 128 | 127 |
| 129 } // namespace sync_driver | 128 } // namespace sync_driver |
| OLD | NEW |