| 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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 const char kDnsLogDetails[] = "dns-log-details"; | 437 const char kDnsLogDetails[] = "dns-log-details"; |
| 438 | 438 |
| 439 // Disables prefetching of DNS information. | 439 // Disables prefetching of DNS information. |
| 440 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; | 440 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; |
| 441 | 441 |
| 442 // Dump any accumualted histograms to the log when browser terminates (requires | 442 // Dump any accumualted histograms to the log when browser terminates (requires |
| 443 // logging to be enabled to really do anything). Used by developers and test | 443 // logging to be enabled to really do anything). Used by developers and test |
| 444 // scripts. | 444 // scripts. |
| 445 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; | 445 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; |
| 446 | 446 |
| 447 // Enables the <adview> tag in packaged apps. |
| 448 const char kEnableAdview[] = "enable-adview"; |
| 449 |
| 450 // Enables specifying a "src" attribute on <adview> elements |
| 451 // (for testing purposes, to skip the whitelist). |
| 452 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute"; |
| 453 |
| 447 // Enables the experimental asynchronous DNS client. | 454 // Enables the experimental asynchronous DNS client. |
| 448 const char kEnableAsyncDns[] = "enable-async-dns"; | 455 const char kEnableAsyncDns[] = "enable-async-dns"; |
| 449 | 456 |
| 450 // Enables the inclusion of non-standard ports when generating the Kerberos SPN | 457 // Enables the inclusion of non-standard ports when generating the Kerberos SPN |
| 451 // in response to a Negotiate challenge. See | 458 // in response to a Negotiate challenge. See |
| 452 // HttpAuthHandlerNegotiate::CreateSPN for more background. | 459 // HttpAuthHandlerNegotiate::CreateSPN for more background. |
| 453 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 460 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
| 454 | 461 |
| 455 // Enables the pre- and auto-login features. When a user signs in to sync, the | 462 // Enables the pre- and auto-login features. When a user signs in to sync, the |
| 456 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | 463 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a |
| (...skipping 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1677 | 1684 |
| 1678 // ----------------------------------------------------------------------------- | 1685 // ----------------------------------------------------------------------------- |
| 1679 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1686 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1680 // | 1687 // |
| 1681 // You were going to just dump your switches here, weren't you? Instead, please | 1688 // You were going to just dump your switches here, weren't you? Instead, please |
| 1682 // put them in alphabetical order above, or in order inside the appropriate | 1689 // put them in alphabetical order above, or in order inside the appropriate |
| 1683 // ifdef at the bottom. The order should match the header. | 1690 // ifdef at the bottom. The order should match the header. |
| 1684 // ----------------------------------------------------------------------------- | 1691 // ----------------------------------------------------------------------------- |
| 1685 | 1692 |
| 1686 } // namespace switches | 1693 } // namespace switches |
| OLD | NEW |