| 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 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; | 479 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; |
| 480 | 480 |
| 481 // Enables the experimental asynchronous DNS client. | 481 // Enables the experimental asynchronous DNS client. |
| 482 const char kEnableAsyncDns[] = "enable-async-dns"; | 482 const char kEnableAsyncDns[] = "enable-async-dns"; |
| 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 // Enables the pre- and auto-login features. When a user signs in to sync, the |
| 490 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a |
| 491 // GAIA login page, an info bar can help the user login. |
| 492 const char kEnableAutologin[] = "enable-autologin"; |
| 493 |
| 489 // Enables the Automation extension API. | 494 // Enables the Automation extension API. |
| 490 // TODO(dtseng): Remove once API enabled for stable channel. | 495 // TODO(dtseng): Remove once API enabled for stable channel. |
| 491 const char kEnableAutomationAPI[] = "enable-automation-api"; | 496 const char kEnableAutomationAPI[] = "enable-automation-api"; |
| 492 | 497 |
| 493 // Enables the benchmarking extensions. | 498 // Enables the benchmarking extensions. |
| 494 const char kEnableBenchmarking[] = "enable-benchmarking"; | 499 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 495 | 500 |
| 496 // Enables client hints, which adds hints about browser state to HTTP requests. | 501 // Enables client hints, which adds hints about browser state to HTTP requests. |
| 497 const char kEnableClientHints[] = "enable-client-hints"; | 502 const char kEnableClientHints[] = "enable-client-hints"; |
| 498 | 503 |
| (...skipping 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1529 | 1534 |
| 1530 // ----------------------------------------------------------------------------- | 1535 // ----------------------------------------------------------------------------- |
| 1531 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1536 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1532 // | 1537 // |
| 1533 // You were going to just dump your switches here, weren't you? Instead, please | 1538 // You were going to just dump your switches here, weren't you? Instead, please |
| 1534 // put them in alphabetical order above, or in order inside the appropriate | 1539 // put them in alphabetical order above, or in order inside the appropriate |
| 1535 // ifdef at the bottom. The order should match the header. | 1540 // ifdef at the bottom. The order should match the header. |
| 1536 // ----------------------------------------------------------------------------- | 1541 // ----------------------------------------------------------------------------- |
| 1537 | 1542 |
| 1538 } // namespace switches | 1543 } // namespace switches |
| OLD | NEW |