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

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

Issue 10005041: Remove SPDY 2.1 support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove references to deleted flags from chrome/browser Created 8 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/chrome_browser_main.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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 SINGLE_VALUE_TYPE(switches::kEnableHttpPipelining) 441 SINGLE_VALUE_TYPE(switches::kEnableHttpPipelining)
442 }, 442 },
443 { 443 {
444 "enable-spdy3", 444 "enable-spdy3",
445 IDS_FLAGS_ENABLE_SPDY3_NAME, 445 IDS_FLAGS_ENABLE_SPDY3_NAME,
446 IDS_FLAGS_ENABLE_SPDY3_DESCRIPTION, 446 IDS_FLAGS_ENABLE_SPDY3_DESCRIPTION,
447 kOsAll, 447 kOsAll,
448 SINGLE_VALUE_TYPE(switches::kEnableSpdy3) 448 SINGLE_VALUE_TYPE(switches::kEnableSpdy3)
449 }, 449 },
450 { 450 {
451 "enable-spdy-flow-control",
452 IDS_FLAGS_ENABLE_SPDY_FLOW_CONTROL_NAME,
453 IDS_FLAGS_ENABLE_SPDY_FLOW_CONTROL_DESCRIPTION,
454 kOsAll,
455 SINGLE_VALUE_TYPE(switches::kEnableSpdyFlowControl)
456 },
457 {
458 "enable-async-dns", 451 "enable-async-dns",
459 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME, 452 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME,
460 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION, 453 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION,
461 kOsWin | kOsMac | kOsLinux | kOsCrOS, 454 kOsWin | kOsMac | kOsLinux | kOsCrOS,
462 SINGLE_VALUE_TYPE(switches::kEnableAsyncDns) 455 SINGLE_VALUE_TYPE(switches::kEnableAsyncDns)
463 }, 456 },
464 { 457 {
465 "enable-video-track", 458 "enable-video-track",
466 IDS_FLAGS_ENABLE_VIDEO_TRACK_NAME, 459 IDS_FLAGS_ENABLE_VIDEO_TRACK_NAME,
467 IDS_FLAGS_ENABLE_VIDEO_TRACK_DESCRIPTION, 460 IDS_FLAGS_ENABLE_VIDEO_TRACK_DESCRIPTION,
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
1080 } 1073 }
1081 1074
1082 const Experiment* GetExperiments(size_t* count) { 1075 const Experiment* GetExperiments(size_t* count) {
1083 *count = num_experiments; 1076 *count = num_experiments;
1084 return experiments; 1077 return experiments;
1085 } 1078 }
1086 1079
1087 } // namespace testing 1080 } // namespace testing
1088 1081
1089 } // namespace about_flags 1082 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chrome_browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698