Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 13845012: [SPDY] Add flag and about:flags entry for SPDY/4 alpha 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | net/http/http_network_transaction_spdy3_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | net/http/http_network_transaction_spdy3_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698