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 16 matching lines...) Expand all Loading... |
27 | 27 |
28 // Booleans specifying whether the user has selected to sync the following | 28 // Booleans specifying whether the user has selected to sync the following |
29 // datatypes. | 29 // datatypes. |
30 const char kSyncAppList[] = "sync.app_list"; | 30 const char kSyncAppList[] = "sync.app_list"; |
31 const char kSyncAppNotifications[] = "sync.app_notifications"; | 31 const char kSyncAppNotifications[] = "sync.app_notifications"; |
32 const char kSyncAppSettings[] = "sync.app_settings"; | 32 const char kSyncAppSettings[] = "sync.app_settings"; |
33 const char kSyncApps[] = "sync.apps"; | 33 const char kSyncApps[] = "sync.apps"; |
34 const char kSyncArticles[] = "sync.articles"; | 34 const char kSyncArticles[] = "sync.articles"; |
35 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 35 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
36 const char kSyncAutofillWallet[] = "sync.autofill_wallet"; | 36 const char kSyncAutofillWallet[] = "sync.autofill_wallet"; |
| 37 const char kSyncAutofillWalletMetadata[] = "sync.autofill_wallet_metadata"; |
37 const char kSyncAutofill[] = "sync.autofill"; | 38 const char kSyncAutofill[] = "sync.autofill"; |
38 const char kSyncBookmarks[] = "sync.bookmarks"; | 39 const char kSyncBookmarks[] = "sync.bookmarks"; |
39 const char kSyncDeviceInfo[] = "sync.device_info"; | 40 const char kSyncDeviceInfo[] = "sync.device_info"; |
40 const char kSyncDictionary[] = "sync.dictionary"; | 41 const char kSyncDictionary[] = "sync.dictionary"; |
41 const char kSyncExtensionSettings[] = "sync.extension_settings"; | 42 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
42 const char kSyncExtensions[] = "sync.extensions"; | 43 const char kSyncExtensions[] = "sync.extensions"; |
43 const char kSyncFaviconImages[] = "sync.favicon_images"; | 44 const char kSyncFaviconImages[] = "sync.favicon_images"; |
44 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; | 45 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; |
45 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; | 46 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; |
46 const char kSyncPasswords[] = "sync.passwords"; | 47 const char kSyncPasswords[] = "sync.passwords"; |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 | 107 |
107 // Stores how many times received MEMORY_PRESSURE_LEVEL_CRITICAL. | 108 // Stores how many times received MEMORY_PRESSURE_LEVEL_CRITICAL. |
108 const char kSyncMemoryPressureWarningCount[] = "sync.memory_warning_count"; | 109 const char kSyncMemoryPressureWarningCount[] = "sync.memory_warning_count"; |
109 | 110 |
110 // Stores if sync shutdown cleanly. | 111 // Stores if sync shutdown cleanly. |
111 const char kSyncShutdownCleanly[] = "sync.shutdown_cleanly"; | 112 const char kSyncShutdownCleanly[] = "sync.shutdown_cleanly"; |
112 | 113 |
113 } // namespace prefs | 114 } // namespace prefs |
114 | 115 |
115 } // namespace sync_driver | 116 } // namespace sync_driver |
OLD | NEW |