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 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
637 | 637 |
638 // Controls the support for SDCH filtering (dictionary based expansion of | 638 // Controls the support for SDCH filtering (dictionary based expansion of |
639 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 639 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
640 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 640 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
641 // supported server-side for searches on google.com. | 641 // supported server-side for searches on google.com. |
642 const char kEnableSdch[] = "enable-sdch"; | 642 const char kEnableSdch[] = "enable-sdch"; |
643 | 643 |
644 // Disable SPDY/3.1. This is a temporary testing flag. | 644 // Disable SPDY/3.1. This is a temporary testing flag. |
645 const char kDisableSpdy31[] = "disable-spdy31"; | 645 const char kDisableSpdy31[] = "disable-spdy31"; |
646 | 646 |
647 // Enable SPDY/4 alpha 1. This is a temporary testing flag. | |
648 const char kEnableSpdy4a1[] = "enable-spdy4a1"; | |
649 | |
650 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. | 647 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. |
651 const char kEnableSpdyCredentialFrames[] = "enable-spdy-credential-frames"; | 648 const char kEnableSpdyCredentialFrames[] = "enable-spdy-credential-frames"; |
652 | 649 |
653 // Enables auto correction for misspelled words. | 650 // Enables auto correction for misspelled words. |
654 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 651 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
655 | 652 |
656 // Enables the stacked tabstrip. | 653 // Enables the stacked tabstrip. |
657 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | 654 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; |
658 | 655 |
659 // Enables experimental suggestions pane in New Tab page. | 656 // Enables experimental suggestions pane in New Tab page. |
(...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1591 | 1588 |
1592 // ----------------------------------------------------------------------------- | 1589 // ----------------------------------------------------------------------------- |
1593 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1590 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1594 // | 1591 // |
1595 // You were going to just dump your switches here, weren't you? Instead, please | 1592 // You were going to just dump your switches here, weren't you? Instead, please |
1596 // put them in alphabetical order above, or in order inside the appropriate | 1593 // put them in alphabetical order above, or in order inside the appropriate |
1597 // ifdef at the bottom. The order should match the header. | 1594 // ifdef at the bottom. The order should match the header. |
1598 // ----------------------------------------------------------------------------- | 1595 // ----------------------------------------------------------------------------- |
1599 | 1596 |
1600 } // namespace switches | 1597 } // namespace switches |
OLD | NEW |