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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 kSyncSupervisedUsers[] = "sync.managed_users"; | 56 const char kSyncSupervisedUsers[] = "sync.managed_users"; |
57 const char kSyncSyncedNotificationAppInfo[] = | 57 const char kSyncSyncedNotificationAppInfo[] = |
58 "sync.synced_notification_app_info"; | 58 "sync.synced_notification_app_info"; |
59 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; | 59 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; |
60 const char kSyncTabs[] = "sync.tabs"; | 60 const char kSyncTabs[] = "sync.tabs"; |
61 const char kSyncThemes[] = "sync.themes"; | 61 const char kSyncThemes[] = "sync.themes"; |
62 const char kSyncTypedUrls[] = "sync.typed_urls"; | 62 const char kSyncTypedUrls[] = "sync.typed_urls"; |
| 63 const char kSyncWifiCredentials[] = "sync.wifi_credentials"; |
63 | 64 |
64 // Boolean used by enterprise configuration management in order to lock down | 65 // Boolean used by enterprise configuration management in order to lock down |
65 // sync. | 66 // sync. |
66 const char kSyncManaged[] = "sync.managed"; | 67 const char kSyncManaged[] = "sync.managed"; |
67 | 68 |
68 // Boolean to prevent sync from automatically starting up. This is | 69 // Boolean to prevent sync from automatically starting up. This is |
69 // used when sync is disabled by the user via the privacy dashboard. | 70 // used when sync is disabled by the user via the privacy dashboard. |
70 const char kSyncSuppressStart[] = "sync.suppress_start"; | 71 const char kSyncSuppressStart[] = "sync.suppress_start"; |
71 | 72 |
72 // A string that can be used to restore sync encryption infrastructure on | 73 // A string that can be used to restore sync encryption infrastructure on |
(...skipping 25 matching lines...) Expand all Loading... |
98 | 99 |
99 // Stores how many times to try rollback before giving up. | 100 // Stores how many times to try rollback before giving up. |
100 const char kSyncRemainingRollbackTries[] = "sync.remaining_rollback_tries"; | 101 const char kSyncRemainingRollbackTries[] = "sync.remaining_rollback_tries"; |
101 | 102 |
102 // Stores the timestamp of first sync. | 103 // Stores the timestamp of first sync. |
103 const char kSyncFirstSyncTime[] = "sync.first_sync_time"; | 104 const char kSyncFirstSyncTime[] = "sync.first_sync_time"; |
104 | 105 |
105 } // namespace prefs | 106 } // namespace prefs |
106 | 107 |
107 } // namespace sync_driver | 108 } // namespace sync_driver |
OLD | NEW |