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 // Disable using a PSL-based domain matching for autofill of passwords. | |
498 const char kEnableAutofillPSLDomainMatching[] = | |
nilesh
2013/06/04 23:02:36
kEnablePasswordAutofill..
nyquist
2013/06/05 00:08:51
Done.
| |
499 "enable-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 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1593 | 1597 |
1594 // ----------------------------------------------------------------------------- | 1598 // ----------------------------------------------------------------------------- |
1595 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1599 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1596 // | 1600 // |
1597 // You were going to just dump your switches here, weren't you? Instead, please | 1601 // You were going to just dump your switches here, weren't you? Instead, please |
1598 // put them in alphabetical order above, or in order inside the appropriate | 1602 // put them in alphabetical order above, or in order inside the appropriate |
1599 // ifdef at the bottom. The order should match the header. | 1603 // ifdef at the bottom. The order should match the header. |
1600 // ----------------------------------------------------------------------------- | 1604 // ----------------------------------------------------------------------------- |
1601 | 1605 |
1602 } // namespace switches | 1606 } // namespace switches |
OLD | NEW |