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