| 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 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; | 454 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; |
| 455 | 455 |
| 456 // Enables the experimental asynchronous DNS client. | 456 // Enables the experimental asynchronous DNS client. |
| 457 const char kEnableAsyncDns[] = "enable-async-dns"; | 457 const char kEnableAsyncDns[] = "enable-async-dns"; |
| 458 | 458 |
| 459 // Enables the inclusion of non-standard ports when generating the Kerberos SPN | 459 // Enables the inclusion of non-standard ports when generating the Kerberos SPN |
| 460 // in response to a Negotiate challenge. See | 460 // in response to a Negotiate challenge. See |
| 461 // HttpAuthHandlerNegotiate::CreateSPN for more background. | 461 // HttpAuthHandlerNegotiate::CreateSPN for more background. |
| 462 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 462 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
| 463 | 463 |
| 464 // Enables the pre- and auto-login features. When a user signs in to sync, the | |
| 465 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | |
| 466 // GAIA login page, an info bar can help the user login. | |
| 467 const char kEnableAutologin[] = "enable-autologin"; | |
| 468 | |
| 469 // Enables the Automation extension API. | 464 // Enables the Automation extension API. |
| 470 // TODO(dtseng): Remove once API enabled for stable channel. | 465 // TODO(dtseng): Remove once API enabled for stable channel. |
| 471 const char kEnableAutomationAPI[] = "enable-automation-api"; | 466 const char kEnableAutomationAPI[] = "enable-automation-api"; |
| 472 | 467 |
| 473 // Enables the benchmarking extensions. | 468 // Enables the benchmarking extensions. |
| 474 const char kEnableBenchmarking[] = "enable-benchmarking"; | 469 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 475 | 470 |
| 476 // Enables client hints, which adds hints about browser state to HTTP requests. | 471 // Enables client hints, which adds hints about browser state to HTTP requests. |
| 477 const char kEnableClientHints[] = "enable-client-hints"; | 472 const char kEnableClientHints[] = "enable-client-hints"; |
| 478 | 473 |
| (...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1462 | 1457 |
| 1463 // ----------------------------------------------------------------------------- | 1458 // ----------------------------------------------------------------------------- |
| 1464 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1459 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1465 // | 1460 // |
| 1466 // You were going to just dump your switches here, weren't you? Instead, please | 1461 // You were going to just dump your switches here, weren't you? Instead, please |
| 1467 // put them in alphabetical order above, or in order inside the appropriate | 1462 // put them in alphabetical order above, or in order inside the appropriate |
| 1468 // ifdef at the bottom. The order should match the header. | 1463 // ifdef at the bottom. The order should match the header. |
| 1469 // ----------------------------------------------------------------------------- | 1464 // ----------------------------------------------------------------------------- |
| 1470 | 1465 |
| 1471 } // namespace switches | 1466 } // namespace switches |
| OLD | NEW |