| 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 { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 const char kSyncDictionary[] = "sync.dictionary"; | 43 const char kSyncDictionary[] = "sync.dictionary"; |
| 44 const char kSyncExtensionSettings[] = "sync.extension_settings"; | 44 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
| 45 const char kSyncExtensions[] = "sync.extensions"; | 45 const char kSyncExtensions[] = "sync.extensions"; |
| 46 const char kSyncFaviconImages[] = "sync.favicon_images"; | 46 const char kSyncFaviconImages[] = "sync.favicon_images"; |
| 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 kSyncPrinters[] = "sync.printers"; | 51 const char kSyncPrinters[] = "sync.printers"; |
| 52 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; | 52 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; |
| 53 const char kSyncReadingList[] = "sync.reading_list"; |
| 53 const char kSyncSearchEngines[] = "sync.search_engines"; | 54 const char kSyncSearchEngines[] = "sync.search_engines"; |
| 54 const char kSyncSessions[] = "sync.sessions"; | 55 const char kSyncSessions[] = "sync.sessions"; |
| 55 const char kSyncSupervisedUserSettings[] = "sync.managed_user_settings"; | 56 const char kSyncSupervisedUserSettings[] = "sync.managed_user_settings"; |
| 56 const char kSyncSupervisedUserSharedSettings[] = | 57 const char kSyncSupervisedUserSharedSettings[] = |
| 57 "sync.managed_user_shared_settings"; | 58 "sync.managed_user_shared_settings"; |
| 58 const char kSyncSupervisedUserWhitelists[] = "sync.managed_user_whitelists"; | 59 const char kSyncSupervisedUserWhitelists[] = "sync.managed_user_whitelists"; |
| 59 const char kSyncSupervisedUsers[] = "sync.managed_users"; | 60 const char kSyncSupervisedUsers[] = "sync.managed_users"; |
| 60 const char kSyncSyncedNotificationAppInfo[] = | 61 const char kSyncSyncedNotificationAppInfo[] = |
| 61 "sync.synced_notification_app_info"; | 62 "sync.synced_notification_app_info"; |
| 62 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; | 63 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 // Updated Nigori state after user entering passphrase. This Nigori state should | 121 // Updated Nigori state after user entering passphrase. This Nigori state should |
| 121 // be persisted across restarts and passed to backend when it is initialized | 122 // be persisted across restarts and passed to backend when it is initialized |
| 122 // after directory cleanup. Preference contains base64 encoded serialized | 123 // after directory cleanup. Preference contains base64 encoded serialized |
| 123 // sync_pb::NigoriSpecifics. | 124 // sync_pb::NigoriSpecifics. |
| 124 const char kSyncNigoriStateForPassphraseTransition[] = | 125 const char kSyncNigoriStateForPassphraseTransition[] = |
| 125 "sync.nigori_state_for_passphrase_transition"; | 126 "sync.nigori_state_for_passphrase_transition"; |
| 126 | 127 |
| 127 } // namespace prefs | 128 } // namespace prefs |
| 128 | 129 |
| 129 } // namespace sync_driver | 130 } // namespace sync_driver |
| OLD | NEW |