| 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 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 | 622 |
| 623 // Controls the support for SDCH filtering (dictionary based expansion of | 623 // Controls the support for SDCH filtering (dictionary based expansion of |
| 624 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 624 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
| 625 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 625 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
| 626 // supported server-side for searches on google.com. | 626 // supported server-side for searches on google.com. |
| 627 const char kEnableSdch[] = "enable-sdch"; | 627 const char kEnableSdch[] = "enable-sdch"; |
| 628 | 628 |
| 629 // Enable SPDY/3.1. This is a temporary testing flag. | 629 // Enable SPDY/3.1. This is a temporary testing flag. |
| 630 const char kEnableSpdy31[] = "enable-spdy31"; | 630 const char kEnableSpdy31[] = "enable-spdy31"; |
| 631 | 631 |
| 632 // Enable SPDY/4 alpha 1. This is a temporary testing flag. |
| 633 const char kEnableSpdy4a1[] = "enable-spdy4a1"; |
| 634 |
| 632 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. | 635 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. |
| 633 const char kEnableSpdyCredentialFrames[] = "enable-spdy-credential-frames"; | 636 const char kEnableSpdyCredentialFrames[] = "enable-spdy-credential-frames"; |
| 634 | 637 |
| 635 // Enables auto correction for misspelled words. | 638 // Enables auto correction for misspelled words. |
| 636 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 639 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
| 637 | 640 |
| 638 // Enables the stacked tabstrip. | 641 // Enables the stacked tabstrip. |
| 639 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | 642 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; |
| 640 | 643 |
| 641 // Enables experimental suggestions pane in New Tab page. | 644 // Enables experimental suggestions pane in New Tab page. |
| (...skipping 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1686 | 1689 |
| 1687 // ----------------------------------------------------------------------------- | 1690 // ----------------------------------------------------------------------------- |
| 1688 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1691 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1689 // | 1692 // |
| 1690 // You were going to just dump your switches here, weren't you? Instead, please | 1693 // You were going to just dump your switches here, weren't you? Instead, please |
| 1691 // put them in alphabetical order above, or in order inside the appropriate | 1694 // put them in alphabetical order above, or in order inside the appropriate |
| 1692 // ifdef at the bottom. The order should match the header. | 1695 // ifdef at the bottom. The order should match the header. |
| 1693 // ----------------------------------------------------------------------------- | 1696 // ----------------------------------------------------------------------------- |
| 1694 | 1697 |
| 1695 } // namespace switches | 1698 } // namespace switches |
| OLD | NEW |