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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 const char kDnsLogDetails[] = "dns-log-details"; | 428 const char kDnsLogDetails[] = "dns-log-details"; |
429 | 429 |
430 // Disables prefetching of DNS information. | 430 // Disables prefetching of DNS information. |
431 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; | 431 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; |
432 | 432 |
433 // Dump any accumualted histograms to the log when browser terminates (requires | 433 // Dump any accumualted histograms to the log when browser terminates (requires |
434 // logging to be enabled to really do anything). Used by developers and test | 434 // logging to be enabled to really do anything). Used by developers and test |
435 // scripts. | 435 // scripts. |
436 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; | 436 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; |
437 | 437 |
| 438 // Enables the <adview> tag in packaged apps. |
| 439 const char kEnableAdview[] = "enable-adview"; |
| 440 |
| 441 // Enables specifying a "src" attribute on <adview> elements |
| 442 // (for testing purposes, to skip the whitelist). |
| 443 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute"; |
| 444 |
438 // Enables the experimental asynchronous DNS client. | 445 // Enables the experimental asynchronous DNS client. |
439 const char kEnableAsyncDns[] = "enable-async-dns"; | 446 const char kEnableAsyncDns[] = "enable-async-dns"; |
440 | 447 |
441 // Enables the inclusion of non-standard ports when generating the Kerberos SPN | 448 // Enables the inclusion of non-standard ports when generating the Kerberos SPN |
442 // in response to a Negotiate challenge. See | 449 // in response to a Negotiate challenge. See |
443 // HttpAuthHandlerNegotiate::CreateSPN for more background. | 450 // HttpAuthHandlerNegotiate::CreateSPN for more background. |
444 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 451 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
445 | 452 |
446 // Enables the pre- and auto-login features. When a user signs in to sync, the | 453 // Enables the pre- and auto-login features. When a user signs in to sync, the |
447 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | 454 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a |
(...skipping 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1662 | 1669 |
1663 // ----------------------------------------------------------------------------- | 1670 // ----------------------------------------------------------------------------- |
1664 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1671 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1665 // | 1672 // |
1666 // You were going to just dump your switches here, weren't you? Instead, please | 1673 // You were going to just dump your switches here, weren't you? Instead, please |
1667 // put them in alphabetical order above, or in order inside the appropriate | 1674 // put them in alphabetical order above, or in order inside the appropriate |
1668 // ifdef at the bottom. The order should match the header. | 1675 // ifdef at the bottom. The order should match the header. |
1669 // ----------------------------------------------------------------------------- | 1676 // ----------------------------------------------------------------------------- |
1670 | 1677 |
1671 } // namespace switches | 1678 } // namespace switches |
OLD | NEW |