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 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
630 | 630 |
631 // Controls the support for SDCH filtering (dictionary based expansion of | 631 // Controls the support for SDCH filtering (dictionary based expansion of |
632 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 632 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
633 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 633 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
634 // supported server-side for searches on google.com. | 634 // supported server-side for searches on google.com. |
635 const char kEnableSdch[] = "enable-sdch"; | 635 const char kEnableSdch[] = "enable-sdch"; |
636 | 636 |
637 // Disable SPDY/3.1. This is a temporary testing flag. | 637 // Disable SPDY/3.1. This is a temporary testing flag. |
638 const char kDisableSpdy31[] = "disable-spdy31"; | 638 const char kDisableSpdy31[] = "disable-spdy31"; |
639 | 639 |
640 // Enable SPDY/4 alpha 1. This is a temporary testing flag. | 640 // Enable SPDY/4 alpha 2. This is a temporary testing flag. |
641 const char kEnableSpdy4a1[] = "enable-spdy4a1"; | 641 const char kEnableSpdy4a2[] = "enable-spdy4a2"; |
642 | 642 |
643 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. | 643 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. |
644 const char kEnableSpdyCredentialFrames[] = "enable-spdy-credential-frames"; | 644 const char kEnableSpdyCredentialFrames[] = "enable-spdy-credential-frames"; |
645 | 645 |
646 // Enables auto correction for misspelled words. | 646 // Enables auto correction for misspelled words. |
647 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 647 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
648 | 648 |
649 // Enables the stacked tabstrip. | 649 // Enables the stacked tabstrip. |
650 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | 650 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; |
651 | 651 |
(...skipping 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1680 | 1680 |
1681 // ----------------------------------------------------------------------------- | 1681 // ----------------------------------------------------------------------------- |
1682 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1682 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1683 // | 1683 // |
1684 // You were going to just dump your switches here, weren't you? Instead, please | 1684 // You were going to just dump your switches here, weren't you? Instead, please |
1685 // put them in alphabetical order above, or in order inside the appropriate | 1685 // put them in alphabetical order above, or in order inside the appropriate |
1686 // ifdef at the bottom. The order should match the header. | 1686 // ifdef at the bottom. The order should match the header. |
1687 // ----------------------------------------------------------------------------- | 1687 // ----------------------------------------------------------------------------- |
1688 | 1688 |
1689 } // namespace switches | 1689 } // namespace switches |
OLD | NEW |