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 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
641 // By default, cookies are not allowed on file://. They are needed for testing, | 641 // By default, cookies are not allowed on file://. They are needed for testing, |
642 // for example page cycler and layout tests. See bug 1157243. | 642 // for example page cycler and layout tests. See bug 1157243. |
643 const char kEnableFileCookies[] = "enable-file-cookies"; | 643 const char kEnableFileCookies[] = "enable-file-cookies"; |
644 | 644 |
645 // Enables Google Now integration. | 645 // Enables Google Now integration. |
646 const char kEnableGoogleNowIntegration[] = "enable-google-now-integration"; | 646 const char kEnableGoogleNowIntegration[] = "enable-google-now-integration"; |
647 | 647 |
648 // Enable HTTP/2 draft 04. This is a temporary testing flag. | 648 // Enable HTTP/2 draft 04. This is a temporary testing flag. |
649 const char kEnableHttp2Draft04[] = "enable-http2-draft-04"; | 649 const char kEnableHttp2Draft04[] = "enable-http2-draft-04"; |
650 | 650 |
651 // Enables the inline sign in flow on Chrome desktop. | 651 // Enables the pure web-based flow for sign in on first run/NTP/wrench menu/ |
652 const char kEnableInlineSignin[] = "enable-inline-signin"; | 652 // settings page. |
| 653 const char kEnableWebBasedSignin[] = "enable-web-based-signin"; |
653 | 654 |
654 // Enables IPv6 support, even if probes suggest that it may not be fully | 655 // Enables IPv6 support, even if probes suggest that it may not be fully |
655 // supported. Some probes may require internet connections, and this flag will | 656 // supported. Some probes may require internet connections, and this flag will |
656 // allow support independent of application testing. This flag overrides | 657 // allow support independent of application testing. This flag overrides |
657 // "disable-ipv6" which appears elswhere in this file. | 658 // "disable-ipv6" which appears elswhere in this file. |
658 const char kEnableIPv6[] = "enable-ipv6"; | 659 const char kEnableIPv6[] = "enable-ipv6"; |
659 | 660 |
660 // Enables IP Pooling within the networks stack (SPDY only). When a connection | 661 // Enables IP Pooling within the networks stack (SPDY only). When a connection |
661 // is needed for a domain which shares an IP with an existing connection, | 662 // is needed for a domain which shares an IP with an existing connection, |
662 // attempt to use the existing connection. | 663 // attempt to use the existing connection. |
(...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1676 | 1677 |
1677 // ----------------------------------------------------------------------------- | 1678 // ----------------------------------------------------------------------------- |
1678 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1679 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1679 // | 1680 // |
1680 // You were going to just dump your switches here, weren't you? Instead, please | 1681 // You were going to just dump your switches here, weren't you? Instead, please |
1681 // put them in alphabetical order above, or in order inside the appropriate | 1682 // put them in alphabetical order above, or in order inside the appropriate |
1682 // ifdef at the bottom. The order should match the header. | 1683 // ifdef at the bottom. The order should match the header. |
1683 // ----------------------------------------------------------------------------- | 1684 // ----------------------------------------------------------------------------- |
1684 | 1685 |
1685 } // namespace switches | 1686 } // namespace switches |
OLD | NEW |