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

Side by Side Diff: chrome/browser/about_flags.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/app/generated_resources.grd ('k') | chrome/browser/io_thread.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/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <string.h> 7 #include <string.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <iterator> 10 #include <iterator>
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 SINGLE_VALUE_TYPE(switches::kEnableAutologin) 655 SINGLE_VALUE_TYPE(switches::kEnableAutologin)
656 }, 656 },
657 { 657 {
658 "enable-spdy31", 658 "enable-spdy31",
659 IDS_FLAGS_ENABLE_SPDY31_NAME, 659 IDS_FLAGS_ENABLE_SPDY31_NAME,
660 IDS_FLAGS_ENABLE_SPDY31_DESCRIPTION, 660 IDS_FLAGS_ENABLE_SPDY31_DESCRIPTION,
661 kOsAll, 661 kOsAll,
662 SINGLE_VALUE_TYPE(switches::kEnableSpdy31) 662 SINGLE_VALUE_TYPE(switches::kEnableSpdy31)
663 }, 663 },
664 { 664 {
665 "enable-spdy4a1",
666 IDS_FLAGS_ENABLE_SPDY4A1_NAME,
667 IDS_FLAGS_ENABLE_SPDY4A1_DESCRIPTION,
668 kOsAll,
669 SINGLE_VALUE_TYPE(switches::kEnableSpdy4a1)
670 },
671 {
665 "enable-async-dns", 672 "enable-async-dns",
666 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME, 673 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME,
667 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION, 674 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION,
668 kOsWin | kOsMac | kOsLinux | kOsCrOS, 675 kOsWin | kOsMac | kOsLinux | kOsCrOS,
669 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAsyncDns, 676 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAsyncDns,
670 switches::kDisableAsyncDns) 677 switches::kDisableAsyncDns)
671 }, 678 },
672 { 679 {
673 "disable-media-source", 680 "disable-media-source",
674 IDS_FLAGS_DISABLE_MEDIA_SOURCE_NAME, 681 IDS_FLAGS_DISABLE_MEDIA_SOURCE_NAME,
(...skipping 1145 matching lines...) Expand 10 before | Expand all | Expand 10 after
1820 } 1827 }
1821 1828
1822 const Experiment* GetExperiments(size_t* count) { 1829 const Experiment* GetExperiments(size_t* count) {
1823 *count = num_experiments; 1830 *count = num_experiments;
1824 return experiments; 1831 return experiments;
1825 } 1832 }
1826 1833
1827 } // namespace testing 1834 } // namespace testing
1828 1835
1829 } // namespace about_flags 1836 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/io_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698