OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 namespace prefs { | 7 namespace prefs { |
8 | 8 |
9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
10 // These are attached to the user profile | 10 // These are attached to the user profile |
(...skipping 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1254 const char kSyncManaged[] = "sync.managed"; | 1254 const char kSyncManaged[] = "sync.managed"; |
1255 | 1255 |
1256 // Boolean to prevent sync from automatically starting up. This is | 1256 // Boolean to prevent sync from automatically starting up. This is |
1257 // used when sync is disabled by the user via the privacy dashboard. | 1257 // used when sync is disabled by the user via the privacy dashboard. |
1258 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1258 const char kSyncSuppressStart[] = "sync.suppress_start"; |
1259 | 1259 |
1260 // Boolean to represent whether the legacy autofill profile data has been | 1260 // Boolean to represent whether the legacy autofill profile data has been |
1261 // migrated to the new model. | 1261 // migrated to the new model. |
1262 const char kAutofillProfileMigrated[] = "sync.autofill_migrated"; | 1262 const char kAutofillProfileMigrated[] = "sync.autofill_migrated"; |
1263 | 1263 |
| 1264 // String representation of the currently acknowledged set of sync types, |
| 1265 // used to figure out if a new sync type has rolled out so we can notify the |
| 1266 // user. |
| 1267 const char kAcknowledgedSyncTypes[] = "sync.acknowledged_types"; |
| 1268 |
1264 // A string that can be used to restore sync encryption infrastructure on | 1269 // A string that can be used to restore sync encryption infrastructure on |
1265 // startup so that the user doesn't need to provide credentials on each start. | 1270 // startup so that the user doesn't need to provide credentials on each start. |
1266 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; | 1271 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; |
1267 | 1272 |
1268 // Boolean tracking whether the user chose to specify a secondary encryption | 1273 // Boolean tracking whether the user chose to specify a secondary encryption |
1269 // passphrase. | 1274 // passphrase. |
1270 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase"; | 1275 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase"; |
1271 | 1276 |
1272 // String that identifies the user logged into sync and other google services. | 1277 // String that identifies the user logged into sync and other google services. |
1273 const char kGoogleServicesUsername[] = "google.services.username"; | 1278 const char kGoogleServicesUsername[] = "google.services.username"; |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1441 // Whether user-specified handlers for protocols and content types can be | 1446 // Whether user-specified handlers for protocols and content types can be |
1442 // specified. | 1447 // specified. |
1443 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1448 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1444 | 1449 |
1445 // Integers that specify the policy refresh rate for device- and user-policy in | 1450 // Integers that specify the policy refresh rate for device- and user-policy in |
1446 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1451 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1447 // by the cloud policy subsystem. | 1452 // by the cloud policy subsystem. |
1448 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1453 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1449 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1454 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1450 } // namespace prefs | 1455 } // namespace prefs |
OLD | NEW |