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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 14189003: [SPDY] Incorporate latest framing changes from HTTP2 into SPDY 4 as SPDY 4a2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 7 years, 7 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 <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML) 665 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML)
666 }, 666 },
667 { 667 {
668 "enable-autologin", 668 "enable-autologin",
669 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME, 669 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME,
670 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION, 670 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION,
671 kOsMac | kOsWin | kOsLinux, 671 kOsMac | kOsWin | kOsLinux,
672 SINGLE_VALUE_TYPE(switches::kEnableAutologin) 672 SINGLE_VALUE_TYPE(switches::kEnableAutologin)
673 }, 673 },
674 { 674 {
675 "enable-spdy4a1",
676 IDS_FLAGS_ENABLE_SPDY4A1_NAME,
677 IDS_FLAGS_ENABLE_SPDY4A1_DESCRIPTION,
678 kOsAll,
679 SINGLE_VALUE_TYPE(switches::kEnableSpdy4a1)
680 },
681 {
682 "enable-async-dns", 675 "enable-async-dns",
683 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME, 676 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME,
684 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION, 677 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION,
685 kOsWin | kOsMac | kOsLinux | kOsCrOS, 678 kOsWin | kOsMac | kOsLinux | kOsCrOS,
686 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAsyncDns, 679 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAsyncDns,
687 switches::kDisableAsyncDns) 680 switches::kDisableAsyncDns)
688 }, 681 },
689 { 682 {
690 "disable-media-source", 683 "disable-media-source",
691 IDS_FLAGS_DISABLE_WEBKIT_MEDIA_SOURCE_NAME, 684 IDS_FLAGS_DISABLE_WEBKIT_MEDIA_SOURCE_NAME,
(...skipping 1263 matching lines...) Expand 10 before | Expand all | Expand 10 after
1955 } 1948 }
1956 1949
1957 const Experiment* GetExperiments(size_t* count) { 1950 const Experiment* GetExperiments(size_t* count) {
1958 *count = num_experiments; 1951 *count = num_experiments;
1959 return experiments; 1952 return experiments;
1960 } 1953 }
1961 1954
1962 } // namespace testing 1955 } // namespace testing
1963 1956
1964 } // namespace about_flags 1957 } // 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