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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; | 46 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; |
47 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; | 47 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; |
48 const char kSyncPasswords[] = "sync.passwords"; | 48 const char kSyncPasswords[] = "sync.passwords"; |
49 const char kSyncPreferences[] = "sync.preferences"; | 49 const char kSyncPreferences[] = "sync.preferences"; |
50 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; | 50 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; |
51 const char kSyncSearchEngines[] = "sync.search_engines"; | 51 const char kSyncSearchEngines[] = "sync.search_engines"; |
52 const char kSyncSessions[] = "sync.sessions"; | 52 const char kSyncSessions[] = "sync.sessions"; |
53 const char kSyncSupervisedUserSettings[] = "sync.managed_user_settings"; | 53 const char kSyncSupervisedUserSettings[] = "sync.managed_user_settings"; |
54 const char kSyncSupervisedUserSharedSettings[] = | 54 const char kSyncSupervisedUserSharedSettings[] = |
55 "sync.managed_user_shared_settings"; | 55 "sync.managed_user_shared_settings"; |
| 56 const char kSyncSupervisedUserWhitelists[] = |
| 57 "sync.managed_user_whitelists"; |
56 const char kSyncSupervisedUsers[] = "sync.managed_users"; | 58 const char kSyncSupervisedUsers[] = "sync.managed_users"; |
57 const char kSyncSyncedNotificationAppInfo[] = | 59 const char kSyncSyncedNotificationAppInfo[] = |
58 "sync.synced_notification_app_info"; | 60 "sync.synced_notification_app_info"; |
59 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; | 61 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; |
60 const char kSyncTabs[] = "sync.tabs"; | 62 const char kSyncTabs[] = "sync.tabs"; |
61 const char kSyncThemes[] = "sync.themes"; | 63 const char kSyncThemes[] = "sync.themes"; |
62 const char kSyncTypedUrls[] = "sync.typed_urls"; | 64 const char kSyncTypedUrls[] = "sync.typed_urls"; |
63 const char kSyncWifiCredentials[] = "sync.wifi_credentials"; | 65 const char kSyncWifiCredentials[] = "sync.wifi_credentials"; |
64 | 66 |
65 // Boolean used by enterprise configuration management in order to lock down | 67 // Boolean used by enterprise configuration management in order to lock down |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 | 101 |
100 // Stores how many times to try rollback before giving up. | 102 // Stores how many times to try rollback before giving up. |
101 const char kSyncRemainingRollbackTries[] = "sync.remaining_rollback_tries"; | 103 const char kSyncRemainingRollbackTries[] = "sync.remaining_rollback_tries"; |
102 | 104 |
103 // Stores the timestamp of first sync. | 105 // Stores the timestamp of first sync. |
104 const char kSyncFirstSyncTime[] = "sync.first_sync_time"; | 106 const char kSyncFirstSyncTime[] = "sync.first_sync_time"; |
105 | 107 |
106 } // namespace prefs | 108 } // namespace prefs |
107 | 109 |
108 } // namespace sync_driver | 110 } // namespace sync_driver |
OLD | NEW |