| 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 1262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1273 const char kAutofillProfileMigrated[] = "sync.autofill_migrated"; | 1273 const char kAutofillProfileMigrated[] = "sync.autofill_migrated"; |
| 1274 | 1274 |
| 1275 // List of the currently acknowledged set of sync types, used to figure out | 1275 // List of the currently acknowledged set of sync types, used to figure out |
| 1276 // if a new sync type has rolled out so we can notify the user. | 1276 // if a new sync type has rolled out so we can notify the user. |
| 1277 const char kAcknowledgedSyncTypes[] = "sync.acknowledged_types"; | 1277 const char kAcknowledgedSyncTypes[] = "sync.acknowledged_types"; |
| 1278 | 1278 |
| 1279 // A string that can be used to restore sync encryption infrastructure on | 1279 // A string that can be used to restore sync encryption infrastructure on |
| 1280 // startup so that the user doesn't need to provide credentials on each start. | 1280 // startup so that the user doesn't need to provide credentials on each start. |
| 1281 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; | 1281 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; |
| 1282 | 1282 |
| 1283 // Boolean tracking whether the user authenticated with OAuth. |
| 1284 const char kSyncUsingOAuth[] = "sync.using_oauth"; |
| 1285 |
| 1283 // Boolean tracking whether the user chose to specify a secondary encryption | 1286 // Boolean tracking whether the user chose to specify a secondary encryption |
| 1284 // passphrase. | 1287 // passphrase. |
| 1285 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase"; | 1288 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase"; |
| 1286 | 1289 |
| 1287 // String that identifies the user logged into sync and other google services. | 1290 // String that identifies the user logged into sync and other google services. |
| 1288 const char kGoogleServicesUsername[] = "google.services.username"; | 1291 const char kGoogleServicesUsername[] = "google.services.username"; |
| 1289 | 1292 |
| 1290 // Create web application shortcut dialog preferences. | 1293 // Create web application shortcut dialog preferences. |
| 1291 const char kWebAppCreateOnDesktop[] = "browser.web_app.create_on_desktop"; | 1294 const char kWebAppCreateOnDesktop[] = "browser.web_app.create_on_desktop"; |
| 1292 const char kWebAppCreateInAppsMenu[] = "browser.web_app.create_in_apps_menu"; | 1295 const char kWebAppCreateInAppsMenu[] = "browser.web_app.create_in_apps_menu"; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1456 // Whether user-specified handlers for protocols and content types can be | 1459 // Whether user-specified handlers for protocols and content types can be |
| 1457 // specified. | 1460 // specified. |
| 1458 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1461 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1459 | 1462 |
| 1460 // Integers that specify the policy refresh rate for device- and user-policy in | 1463 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1461 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1464 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1462 // by the cloud policy subsystem. | 1465 // by the cloud policy subsystem. |
| 1463 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1466 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1464 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1467 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1465 } // namespace prefs | 1468 } // namespace prefs |
| OLD | NEW |