| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 | 547 |
| 548 // Enables the inclusion of non-standard ports when generating the Kerberos SPN | 548 // Enables the inclusion of non-standard ports when generating the Kerberos SPN |
| 549 // in response to a Negotiate challenge. See | 549 // in response to a Negotiate challenge. See |
| 550 // HttpAuthHandlerNegotiate::CreateSPN for more background. | 550 // HttpAuthHandlerNegotiate::CreateSPN for more background. |
| 551 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 551 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
| 552 | 552 |
| 553 // Enable using a public suffix based domain matching for autofill of passwords. | 553 // Enable using a public suffix based domain matching for autofill of passwords. |
| 554 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] = | 554 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] = |
| 555 "enable-password-autofill-public-suffix-domain-matching"; | 555 "enable-password-autofill-public-suffix-domain-matching"; |
| 556 | 556 |
| 557 // Enable the setting to prompt the user for their OS account password before |
| 558 // revealing plaintext passwords in the password manager. |
| 559 const char kEnablePasswordManagerReauthentication[] = |
| 560 "enable-password-manager-reauthentication"; |
| 561 |
| 557 // Enables the pre- and auto-login features. When a user signs in to sync, the | 562 // Enables the pre- and auto-login features. When a user signs in to sync, the |
| 558 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | 563 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a |
| 559 // GAIA login page, an info bar can help the user login. | 564 // GAIA login page, an info bar can help the user login. |
| 560 const char kEnableAutologin[] = "enable-autologin"; | 565 const char kEnableAutologin[] = "enable-autologin"; |
| 561 | 566 |
| 562 // Enables the benchmarking extensions. | 567 // Enables the benchmarking extensions. |
| 563 const char kEnableBenchmarking[] = "enable-benchmarking"; | 568 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 564 | 569 |
| 565 // Enables client hints, which adds hints about browser state to HTTP requests. | 570 // Enables client hints, which adds hints about browser state to HTTP requests. |
| 566 const char kEnableClientHints[] = "enable-client-hints"; | 571 const char kEnableClientHints[] = "enable-client-hints"; |
| (...skipping 1097 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1664 | 1669 |
| 1665 // ----------------------------------------------------------------------------- | 1670 // ----------------------------------------------------------------------------- |
| 1666 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1671 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1667 // | 1672 // |
| 1668 // You were going to just dump your switches here, weren't you? Instead, please | 1673 // You were going to just dump your switches here, weren't you? Instead, please |
| 1669 // put them in alphabetical order above, or in order inside the appropriate | 1674 // put them in alphabetical order above, or in order inside the appropriate |
| 1670 // ifdef at the bottom. The order should match the header. | 1675 // ifdef at the bottom. The order should match the header. |
| 1671 // ----------------------------------------------------------------------------- | 1676 // ----------------------------------------------------------------------------- |
| 1672 | 1677 |
| 1673 } // namespace switches | 1678 } // namespace switches |
| OLD | NEW |