| 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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 | 615 |
| 616 // Controls the support for SDCH filtering (dictionary based expansion of | 616 // Controls the support for SDCH filtering (dictionary based expansion of |
| 617 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 617 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
| 618 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 618 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
| 619 // supported server-side for searches on google.com. | 619 // supported server-side for searches on google.com. |
| 620 const char kEnableSdch[] = "enable-sdch"; | 620 const char kEnableSdch[] = "enable-sdch"; |
| 621 | 621 |
| 622 // Enable SPDY/3. This is a temporary testing flag. | 622 // Enable SPDY/3. This is a temporary testing flag. |
| 623 const char kEnableSpdy3[] = "enable-spdy3"; | 623 const char kEnableSpdy3[] = "enable-spdy3"; |
| 624 | 624 |
| 625 // Enable SPDY/3.1. This is a temporary testing flag. |
| 626 const char kEnableSpdy31[] = "enable-spdy31"; |
| 627 |
| 625 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. | 628 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. |
| 626 const char kEnableSpdyCredentialFrames[] = "enable-spdy-credential-frames"; | 629 const char kEnableSpdyCredentialFrames[] = "enable-spdy-credential-frames"; |
| 627 | 630 |
| 628 // Enables auto correction for misspelled words. | 631 // Enables auto correction for misspelled words. |
| 629 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 632 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
| 630 | 633 |
| 631 // Enables the stacked tabstrip. | 634 // Enables the stacked tabstrip. |
| 632 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | 635 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; |
| 633 | 636 |
| 634 // Enables experimental suggestions pane in New Tab page. | 637 // Enables experimental suggestions pane in New Tab page. |
| (...skipping 1040 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1675 | 1678 |
| 1676 // ----------------------------------------------------------------------------- | 1679 // ----------------------------------------------------------------------------- |
| 1677 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1680 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1678 // | 1681 // |
| 1679 // You were going to just dump your switches here, weren't you? Instead, please | 1682 // You were going to just dump your switches here, weren't you? Instead, please |
| 1680 // put them in alphabetical order above, or in order inside the appropriate | 1683 // put them in alphabetical order above, or in order inside the appropriate |
| 1681 // ifdef at the bottom. The order should match the header. | 1684 // ifdef at the bottom. The order should match the header. |
| 1682 // ----------------------------------------------------------------------------- | 1685 // ----------------------------------------------------------------------------- |
| 1683 | 1686 |
| 1684 } // namespace switches | 1687 } // namespace switches |
| OLD | NEW |