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

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: 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
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 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 SINGLE_VALUE_TYPE(switches::kEnableAutologin) 667 SINGLE_VALUE_TYPE(switches::kEnableAutologin)
668 }, 668 },
669 { 669 {
670 "enable-spdy31", 670 "enable-spdy31",
671 IDS_FLAGS_ENABLE_SPDY31_NAME, 671 IDS_FLAGS_ENABLE_SPDY31_NAME,
672 IDS_FLAGS_ENABLE_SPDY31_DESCRIPTION, 672 IDS_FLAGS_ENABLE_SPDY31_DESCRIPTION,
673 kOsAll, 673 kOsAll,
674 SINGLE_VALUE_TYPE(switches::kEnableSpdy31) 674 SINGLE_VALUE_TYPE(switches::kEnableSpdy31)
675 }, 675 },
676 { 676 {
677 "enable-spdy4a1",
678 IDS_FLAGS_ENABLE_SPDY4A1_NAME,
679 IDS_FLAGS_ENABLE_SPDY4A1_DESCRIPTION,
680 kOsAll,
681 SINGLE_VALUE_TYPE(switches::kEnableSpdy4a1)
682 },
683 {
677 "enable-async-dns", 684 "enable-async-dns",
678 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME, 685 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME,
679 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION, 686 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION,
680 kOsWin | kOsMac | kOsLinux | kOsCrOS, 687 kOsWin | kOsMac | kOsLinux | kOsCrOS,
681 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAsyncDns, 688 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAsyncDns,
682 switches::kDisableAsyncDns) 689 switches::kDisableAsyncDns)
683 }, 690 },
684 { 691 {
685 "disable-media-source", 692 "disable-media-source",
686 IDS_FLAGS_DISABLE_MEDIA_SOURCE_NAME, 693 IDS_FLAGS_DISABLE_MEDIA_SOURCE_NAME,
(...skipping 1152 matching lines...) Expand 10 before | Expand all | Expand 10 after
1839 } 1846 }
1840 1847
1841 const Experiment* GetExperiments(size_t* count) { 1848 const Experiment* GetExperiments(size_t* count) {
1842 *count = num_experiments; 1849 *count = num_experiments;
1843 return experiments; 1850 return experiments;
1844 } 1851 }
1845 1852
1846 } // namespace testing 1853 } // namespace testing
1847 1854
1848 } // namespace about_flags 1855 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698