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 "components/sync_driver/pref_names.h" | 5 #include "components/sync_driver/pref_names.h" |
6 | 6 |
7 namespace sync_driver { | 7 namespace sync_driver { |
8 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 20 matching lines...) Expand all Loading... |
31 // Booleans specifying whether the user has selected to sync the following | 31 // Booleans specifying whether the user has selected to sync the following |
32 // datatypes. | 32 // datatypes. |
33 const char kSyncAppList[] = "sync.app_list"; | 33 const char kSyncAppList[] = "sync.app_list"; |
34 const char kSyncAppNotifications[] = "sync.app_notifications"; | 34 const char kSyncAppNotifications[] = "sync.app_notifications"; |
35 const char kSyncAppSettings[] = "sync.app_settings"; | 35 const char kSyncAppSettings[] = "sync.app_settings"; |
36 const char kSyncApps[] = "sync.apps"; | 36 const char kSyncApps[] = "sync.apps"; |
37 const char kSyncArticles[] = "sync.articles"; | 37 const char kSyncArticles[] = "sync.articles"; |
38 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 38 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
39 const char kSyncAutofill[] = "sync.autofill"; | 39 const char kSyncAutofill[] = "sync.autofill"; |
40 const char kSyncBookmarks[] = "sync.bookmarks"; | 40 const char kSyncBookmarks[] = "sync.bookmarks"; |
| 41 const char kSyncDeviceInfo[] = "sync.device_info"; |
41 const char kSyncDictionary[] = "sync.dictionary"; | 42 const char kSyncDictionary[] = "sync.dictionary"; |
42 const char kSyncExtensionSettings[] = "sync.extension_settings"; | 43 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
43 const char kSyncExtensions[] = "sync.extensions"; | 44 const char kSyncExtensions[] = "sync.extensions"; |
44 const char kSyncFaviconImages[] = "sync.favicon_images"; | 45 const char kSyncFaviconImages[] = "sync.favicon_images"; |
45 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; | 46 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; |
46 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; | 47 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; |
47 const char kSyncPasswords[] = "sync.passwords"; | 48 const char kSyncPasswords[] = "sync.passwords"; |
48 const char kSyncPreferences[] = "sync.preferences"; | 49 const char kSyncPreferences[] = "sync.preferences"; |
49 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; | 50 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; |
50 const char kSyncSearchEngines[] = "sync.search_engines"; | 51 const char kSyncSearchEngines[] = "sync.search_engines"; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 | 98 |
98 // Stores how many times to try rollback before giving up. | 99 // Stores how many times to try rollback before giving up. |
99 const char kSyncRemainingRollbackTries[] = "sync.remaining_rollback_tries"; | 100 const char kSyncRemainingRollbackTries[] = "sync.remaining_rollback_tries"; |
100 | 101 |
101 // Stores the timestamp of first sync. | 102 // Stores the timestamp of first sync. |
102 const char kSyncFirstSyncTime[] = "sync.first_sync_time"; | 103 const char kSyncFirstSyncTime[] = "sync.first_sync_time"; |
103 | 104 |
104 } // namespace prefs | 105 } // namespace prefs |
105 | 106 |
106 } // namespace sync_driver | 107 } // namespace sync_driver |
OLD | NEW |