| 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 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 1499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1510 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; | 1510 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; |
| 1511 const char kCloudPrintSigninDialogWidth[] = | 1511 const char kCloudPrintSigninDialogWidth[] = |
| 1512 "cloud_print.signin_dialog_size.width"; | 1512 "cloud_print.signin_dialog_size.width"; |
| 1513 const char kCloudPrintSigninDialogHeight[] = | 1513 const char kCloudPrintSigninDialogHeight[] = |
| 1514 "cloud_print.signin_dialog_size.height"; | 1514 "cloud_print.signin_dialog_size.height"; |
| 1515 | 1515 |
| 1516 // The list of BackgroundContents that should be loaded when the browser | 1516 // The list of BackgroundContents that should be loaded when the browser |
| 1517 // launches. | 1517 // launches. |
| 1518 const char kRegisteredBackgroundContents[] = "background_contents.registered"; | 1518 const char kRegisteredBackgroundContents[] = "background_contents.registered"; |
| 1519 | 1519 |
| 1520 // An int that stores how often we've shown the "Chrome is configured to |
| 1521 // auto-launch" infobar. |
| 1522 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; |
| 1523 |
| 1520 // String that lists supported HTTP authentication schemes. | 1524 // String that lists supported HTTP authentication schemes. |
| 1521 const char kAuthSchemes[] = "auth.schemes"; | 1525 const char kAuthSchemes[] = "auth.schemes"; |
| 1522 | 1526 |
| 1523 // Boolean that specifies whether to disable CNAME lookups when generating | 1527 // Boolean that specifies whether to disable CNAME lookups when generating |
| 1524 // Kerberos SPN. | 1528 // Kerberos SPN. |
| 1525 const char kDisableAuthNegotiateCnameLookup[] = | 1529 const char kDisableAuthNegotiateCnameLookup[] = |
| 1526 "auth.disable_negotiate_cname_lookup"; | 1530 "auth.disable_negotiate_cname_lookup"; |
| 1527 // Boolean that specifies whether to include the port in a generated Kerberos | 1531 // Boolean that specifies whether to include the port in a generated Kerberos |
| 1528 // SPN. | 1532 // SPN. |
| 1529 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; | 1533 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1680 | 1684 |
| 1681 // String that represents the recovery component last downloaded version. This | 1685 // String that represents the recovery component last downloaded version. This |
| 1682 // takes the usual 'a.b.c.d' notation. | 1686 // takes the usual 'a.b.c.d' notation. |
| 1683 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1687 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1684 | 1688 |
| 1685 // String that stores the component updater last known state. This is used for | 1689 // String that stores the component updater last known state. This is used for |
| 1686 // troubleshooting. | 1690 // troubleshooting. |
| 1687 const char kComponentUpdaterState[] = "component_updater.state"; | 1691 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1688 | 1692 |
| 1689 } // namespace prefs | 1693 } // namespace prefs |
| OLD | NEW |