| 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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 | 483 |
| 484 // Enables the inclusion of non-standard ports when generating the Kerberos SPN | 484 // Enables the inclusion of non-standard ports when generating the Kerberos SPN |
| 485 // in response to a Negotiate challenge. See | 485 // in response to a Negotiate challenge. See |
| 486 // HttpAuthHandlerNegotiate::CreateSPN for more background. | 486 // HttpAuthHandlerNegotiate::CreateSPN for more background. |
| 487 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 487 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
| 488 | 488 |
| 489 // Enable using a public suffix based domain matching for autofill of passwords. | 489 // Enable using a public suffix based domain matching for autofill of passwords. |
| 490 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] = | 490 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] = |
| 491 "enable-password-autofill-public-suffix-domain-matching"; | 491 "enable-password-autofill-public-suffix-domain-matching"; |
| 492 | 492 |
| 493 // Enables the pre- and auto-login features. When a user signs in to sync, the | |
| 494 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | |
| 495 // GAIA login page, an info bar can help the user login. | |
| 496 const char kEnableAutologin[] = "enable-autologin"; | |
| 497 | |
| 498 // Enables the Automation extension API. | 493 // Enables the Automation extension API. |
| 499 // TODO(dtseng): Remove once API enabled for stable channel. | 494 // TODO(dtseng): Remove once API enabled for stable channel. |
| 500 const char kEnableAutomationAPI[] = "enable-automation-api"; | 495 const char kEnableAutomationAPI[] = "enable-automation-api"; |
| 501 | 496 |
| 502 // Enables the benchmarking extensions. | 497 // Enables the benchmarking extensions. |
| 503 const char kEnableBenchmarking[] = "enable-benchmarking"; | 498 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 504 | 499 |
| 505 // Enables client hints, which adds hints about browser state to HTTP requests. | 500 // Enables client hints, which adds hints about browser state to HTTP requests. |
| 506 const char kEnableClientHints[] = "enable-client-hints"; | 501 const char kEnableClientHints[] = "enable-client-hints"; |
| 507 | 502 |
| (...skipping 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1547 | 1542 |
| 1548 // ----------------------------------------------------------------------------- | 1543 // ----------------------------------------------------------------------------- |
| 1549 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1544 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1550 // | 1545 // |
| 1551 // You were going to just dump your switches here, weren't you? Instead, please | 1546 // You were going to just dump your switches here, weren't you? Instead, please |
| 1552 // put them in alphabetical order above, or in order inside the appropriate | 1547 // put them in alphabetical order above, or in order inside the appropriate |
| 1553 // ifdef at the bottom. The order should match the header. | 1548 // ifdef at the bottom. The order should match the header. |
| 1554 // ----------------------------------------------------------------------------- | 1549 // ----------------------------------------------------------------------------- |
| 1555 | 1550 |
| 1556 } // namespace switches | 1551 } // namespace switches |
| OLD | NEW |