| 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 1258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1269 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1269 const char kSyncSuppressStart[] = "sync.suppress_start"; |
| 1270 | 1270 |
| 1271 // Boolean to represent whether the legacy autofill profile data has been | 1271 // Boolean to represent whether the legacy autofill profile data has been |
| 1272 // migrated to the new model. | 1272 // migrated to the new model. |
| 1273 const char kAutofillProfileMigrated[] = "sync.autofill_migrated"; | 1273 const char kAutofillProfileMigrated[] = "sync.autofill_migrated"; |
| 1274 | 1274 |
| 1275 // A string that can be used to restore sync encryption infrastructure on | 1275 // A string that can be used to restore sync encryption infrastructure on |
| 1276 // startup so that the user doesn't need to provide credentials on each start. | 1276 // startup so that the user doesn't need to provide credentials on each start. |
| 1277 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; | 1277 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; |
| 1278 | 1278 |
| 1279 // Boolean tracking whether the user authenticated with OAuth. |
| 1280 const char kSyncUsingOAuth[] = "sync.using_oauth"; |
| 1281 |
| 1279 // Boolean tracking whether the user chose to specify a secondary encryption | 1282 // Boolean tracking whether the user chose to specify a secondary encryption |
| 1280 // passphrase. | 1283 // passphrase. |
| 1281 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase"; | 1284 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase"; |
| 1282 | 1285 |
| 1283 // String that identifies the user logged into sync and other google services. | 1286 // String that identifies the user logged into sync and other google services. |
| 1284 const char kGoogleServicesUsername[] = "google.services.username"; | 1287 const char kGoogleServicesUsername[] = "google.services.username"; |
| 1285 | 1288 |
| 1286 // Create web application shortcut dialog preferences. | 1289 // Create web application shortcut dialog preferences. |
| 1287 const char kWebAppCreateOnDesktop[] = "browser.web_app.create_on_desktop"; | 1290 const char kWebAppCreateOnDesktop[] = "browser.web_app.create_on_desktop"; |
| 1288 const char kWebAppCreateInAppsMenu[] = "browser.web_app.create_in_apps_menu"; | 1291 const char kWebAppCreateInAppsMenu[] = "browser.web_app.create_in_apps_menu"; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1452 // Whether user-specified handlers for protocols and content types can be | 1455 // Whether user-specified handlers for protocols and content types can be |
| 1453 // specified. | 1456 // specified. |
| 1454 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1457 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1455 | 1458 |
| 1456 // Integers that specify the policy refresh rate for device- and user-policy in | 1459 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1457 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1460 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1458 // by the cloud policy subsystem. | 1461 // by the cloud policy subsystem. |
| 1459 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1462 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1460 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1463 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1461 } // namespace prefs | 1464 } // namespace prefs |
| OLD | NEW |