| 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 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 | 620 |
| 621 // Enables IPv6 support, even if probes suggest that it may not be fully | 621 // Enables IPv6 support, even if probes suggest that it may not be fully |
| 622 // supported. Some probes may require internet connections, and this flag will | 622 // supported. Some probes may require internet connections, and this flag will |
| 623 // allow support independent of application testing. This flag overrides | 623 // allow support independent of application testing. This flag overrides |
| 624 // "disable-ipv6" which appears elswhere in this file. | 624 // "disable-ipv6" which appears elswhere in this file. |
| 625 const char kEnableIPv6[] = "enable-ipv6"; | 625 const char kEnableIPv6[] = "enable-ipv6"; |
| 626 | 626 |
| 627 // Enables experimentation with launching ephemeral apps via hyperlinks. | 627 // Enables experimentation with launching ephemeral apps via hyperlinks. |
| 628 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; | 628 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; |
| 629 | 629 |
| 630 // Enable always using the local NTP for the first NTP load of a new window. | |
| 631 const char kEnableLocalFirstLoadNTP[] = "enable-local-first-load-ntp"; | |
| 632 | |
| 633 // Make the values returned to window.performance.memory more granular and more | 630 // Make the values returned to window.performance.memory more granular and more |
| 634 // up to date. Without this flag, the memory information is still available, but | 631 // up to date. Without this flag, the memory information is still available, but |
| 635 // it is bucketized and updated less frequently. | 632 // it is bucketized and updated less frequently. |
| 636 const char kEnableMemoryInfo[] = "enable-memory-info"; | 633 const char kEnableMemoryInfo[] = "enable-memory-info"; |
| 637 | 634 |
| 638 // Enables metrics recording and reporting in the browser startup sequence, as | 635 // Enables metrics recording and reporting in the browser startup sequence, as |
| 639 // if this was an official Chrome build where the user allowed metrics | 636 // if this was an official Chrome build where the user allowed metrics |
| 640 // reporting. This is used for testing only. | 637 // reporting. This is used for testing only. |
| 641 const char kEnableMetricsReportingForTesting[] = | 638 const char kEnableMetricsReportingForTesting[] = |
| 642 "enable-metrics-reporting-for-testing"; | 639 "enable-metrics-reporting-for-testing"; |
| (...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1649 | 1646 |
| 1650 // ----------------------------------------------------------------------------- | 1647 // ----------------------------------------------------------------------------- |
| 1651 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1648 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1652 // | 1649 // |
| 1653 // You were going to just dump your switches here, weren't you? Instead, please | 1650 // You were going to just dump your switches here, weren't you? Instead, please |
| 1654 // put them in alphabetical order above, or in order inside the appropriate | 1651 // put them in alphabetical order above, or in order inside the appropriate |
| 1655 // ifdef at the bottom. The order should match the header. | 1652 // ifdef at the bottom. The order should match the header. |
| 1656 // ----------------------------------------------------------------------------- | 1653 // ----------------------------------------------------------------------------- |
| 1657 | 1654 |
| 1658 } // namespace switches | 1655 } // namespace switches |
| OLD | NEW |