| 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 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1249 const char kSyncManaged[] = "sync.managed"; | 1249 const char kSyncManaged[] = "sync.managed"; |
| 1250 | 1250 |
| 1251 // Boolean to prevent sync from automatically starting up. This is | 1251 // Boolean to prevent sync from automatically starting up. This is |
| 1252 // used when sync is disabled by the user via the privacy dashboard. | 1252 // used when sync is disabled by the user via the privacy dashboard. |
| 1253 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1253 const char kSyncSuppressStart[] = "sync.suppress_start"; |
| 1254 | 1254 |
| 1255 // Boolean to represent whether the legacy autofill profile data has been | 1255 // Boolean to represent whether the legacy autofill profile data has been |
| 1256 // migrated to the new model. | 1256 // migrated to the new model. |
| 1257 const char kAutofillProfileMigrated[] = "sync.autofill_migrated"; | 1257 const char kAutofillProfileMigrated[] = "sync.autofill_migrated"; |
| 1258 | 1258 |
| 1259 // String representation of the currently acknowledged set of sync types, |
| 1260 // used to figure out if a new sync type has rolled out so we can notify the |
| 1261 // user. |
| 1262 const char kAcknowledgedSyncTypes[] = "sync.acknowledged_types"; |
| 1263 |
| 1259 // A string that can be used to restore sync encryption infrastructure on | 1264 // A string that can be used to restore sync encryption infrastructure on |
| 1260 // startup so that the user doesn't need to provide credentials on each start. | 1265 // startup so that the user doesn't need to provide credentials on each start. |
| 1261 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; | 1266 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; |
| 1262 | 1267 |
| 1263 // Boolean tracking whether the user chose to specify a secondary encryption | 1268 // Boolean tracking whether the user chose to specify a secondary encryption |
| 1264 // passphrase. | 1269 // passphrase. |
| 1265 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase"; | 1270 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase"; |
| 1266 | 1271 |
| 1267 // String that identifies the user logged into sync and other google services. | 1272 // String that identifies the user logged into sync and other google services. |
| 1268 const char kGoogleServicesUsername[] = "google.services.username"; | 1273 const char kGoogleServicesUsername[] = "google.services.username"; |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1436 // Whether user-specified handlers for protocols and content types can be | 1441 // Whether user-specified handlers for protocols and content types can be |
| 1437 // specified. | 1442 // specified. |
| 1438 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1443 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1439 | 1444 |
| 1440 // Integers that specify the policy refresh rate for device- and user-policy in | 1445 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1441 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1446 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1442 // by the cloud policy subsystem. | 1447 // by the cloud policy subsystem. |
| 1443 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1448 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1444 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1449 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1445 } // namespace prefs | 1450 } // namespace prefs |
| OLD | NEW |