| 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 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute"; | 487 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute"; |
| 488 | 488 |
| 489 // Enables the experimental asynchronous DNS client. | 489 // Enables the experimental asynchronous DNS client. |
| 490 const char kEnableAsyncDns[] = "enable-async-dns"; | 490 const char kEnableAsyncDns[] = "enable-async-dns"; |
| 491 | 491 |
| 492 // Enables the inclusion of non-standard ports when generating the Kerberos SPN | 492 // Enables the inclusion of non-standard ports when generating the Kerberos SPN |
| 493 // in response to a Negotiate challenge. See | 493 // in response to a Negotiate challenge. See |
| 494 // HttpAuthHandlerNegotiate::CreateSPN for more background. | 494 // HttpAuthHandlerNegotiate::CreateSPN for more background. |
| 495 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 495 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
| 496 | 496 |
| 497 // Enable using a PSL-based domain matching for autofill of passwords. |
| 498 const char kEnablePasswordAutofillPSLDomainMatching[] = |
| 499 "enable-password-autofill-psl-domain-matching"; |
| 500 |
| 497 // Enables the pre- and auto-login features. When a user signs in to sync, the | 501 // Enables the pre- and auto-login features. When a user signs in to sync, the |
| 498 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | 502 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a |
| 499 // GAIA login page, an info bar can help the user login. | 503 // GAIA login page, an info bar can help the user login. |
| 500 const char kEnableAutologin[] = "enable-autologin"; | 504 const char kEnableAutologin[] = "enable-autologin"; |
| 501 | 505 |
| 502 // Enables the benchmarking extensions. | 506 // Enables the benchmarking extensions. |
| 503 const char kEnableBenchmarking[] = "enable-benchmarking"; | 507 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 504 | 508 |
| 505 // This applies only when the process type is "service". Enables the Cloud | 509 // This applies only when the process type is "service". Enables the Cloud |
| 506 // Print Proxy component within the service process. | 510 // Print Proxy component within the service process. |
| (...skipping 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1588 | 1592 |
| 1589 // ----------------------------------------------------------------------------- | 1593 // ----------------------------------------------------------------------------- |
| 1590 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1594 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1591 // | 1595 // |
| 1592 // You were going to just dump your switches here, weren't you? Instead, please | 1596 // You were going to just dump your switches here, weren't you? Instead, please |
| 1593 // put them in alphabetical order above, or in order inside the appropriate | 1597 // put them in alphabetical order above, or in order inside the appropriate |
| 1594 // ifdef at the bottom. The order should match the header. | 1598 // ifdef at the bottom. The order should match the header. |
| 1595 // ----------------------------------------------------------------------------- | 1599 // ----------------------------------------------------------------------------- |
| 1596 | 1600 |
| 1597 } // namespace switches | 1601 } // namespace switches |
| OLD | NEW |