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