| 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 30 matching lines...) Expand all Loading... |
| 41 const char kSyncBookmarks[] = "sync.bookmarks"; | 41 const char kSyncBookmarks[] = "sync.bookmarks"; |
| 42 const char kSyncDeviceInfo[] = "sync.device_info"; | 42 const char kSyncDeviceInfo[] = "sync.device_info"; |
| 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 kSyncPriorityPreferences[] = "sync.priority_preferences"; | 52 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; |
| 52 const char kSyncSearchEngines[] = "sync.search_engines"; | 53 const char kSyncSearchEngines[] = "sync.search_engines"; |
| 53 const char kSyncSessions[] = "sync.sessions"; | 54 const char kSyncSessions[] = "sync.sessions"; |
| 54 const char kSyncSupervisedUserSettings[] = "sync.managed_user_settings"; | 55 const char kSyncSupervisedUserSettings[] = "sync.managed_user_settings"; |
| 55 const char kSyncSupervisedUserSharedSettings[] = | 56 const char kSyncSupervisedUserSharedSettings[] = |
| 56 "sync.managed_user_shared_settings"; | 57 "sync.managed_user_shared_settings"; |
| 57 const char kSyncSupervisedUserWhitelists[] = "sync.managed_user_whitelists"; | 58 const char kSyncSupervisedUserWhitelists[] = "sync.managed_user_whitelists"; |
| 58 const char kSyncSupervisedUsers[] = "sync.managed_users"; | 59 const char kSyncSupervisedUsers[] = "sync.managed_users"; |
| 59 const char kSyncSyncedNotificationAppInfo[] = | 60 const char kSyncSyncedNotificationAppInfo[] = |
| 60 "sync.synced_notification_app_info"; | 61 "sync.synced_notification_app_info"; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 // Updated Nigori state after user entering passphrase. This Nigori state should | 120 // Updated Nigori state after user entering passphrase. This Nigori state should |
| 120 // be persisted across restarts and passed to backend when it is initialized | 121 // be persisted across restarts and passed to backend when it is initialized |
| 121 // after directory cleanup. Preference contains base64 encoded serialized | 122 // after directory cleanup. Preference contains base64 encoded serialized |
| 122 // sync_pb::NigoriSpecifics. | 123 // sync_pb::NigoriSpecifics. |
| 123 const char kSyncNigoriStateForPassphraseTransition[] = | 124 const char kSyncNigoriStateForPassphraseTransition[] = |
| 124 "sync.nigori_state_for_passphrase_transition"; | 125 "sync.nigori_state_for_passphrase_transition"; |
| 125 | 126 |
| 126 } // namespace prefs | 127 } // namespace prefs |
| 127 | 128 |
| 128 } // namespace sync_driver | 129 } // namespace sync_driver |
| OLD | NEW |