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

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

Issue 9766021: SPDY - Added enabling of SPDY/3 to about:flags. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 SINGLE_VALUE_TYPE(switches::kEnableAutologin) 426 SINGLE_VALUE_TYPE(switches::kEnableAutologin)
427 }, 427 },
428 { 428 {
429 "enable-http-pipelining", 429 "enable-http-pipelining",
430 IDS_FLAGS_ENABLE_HTTP_PIPELINING_NAME, 430 IDS_FLAGS_ENABLE_HTTP_PIPELINING_NAME,
431 IDS_FLAGS_ENABLE_HTTP_PIPELINING_DESCRIPTION, 431 IDS_FLAGS_ENABLE_HTTP_PIPELINING_DESCRIPTION,
432 kOsAll, 432 kOsAll,
433 SINGLE_VALUE_TYPE(switches::kEnableHttpPipelining) 433 SINGLE_VALUE_TYPE(switches::kEnableHttpPipelining)
434 }, 434 },
435 { 435 {
436 "enable-spdy3",
437 IDS_FLAGS_ENABLE_SPDY3_NAME,
438 IDS_FLAGS_ENABLE_SPDY3_DESCRIPTION,
439 kOsAll,
440 SINGLE_VALUE_TYPE(switches::kEnableSpdy3)
441 },
442 {
443 "enable-spdy-flow-control",
444 IDS_FLAGS_ENABLE_SPDY_FLOW_CONTROL_NAME,
445 IDS_FLAGS_ENABLE_SPDY_FLOW_CONTROL_DESCRIPTION,
446 kOsAll,
447 SINGLE_VALUE_TYPE(switches::kEnableSpdyFlowControl)
448 },
449 {
436 "enable-async-dns", 450 "enable-async-dns",
437 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME, 451 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME,
438 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION, 452 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION,
439 kOsWin | kOsMac | kOsLinux | kOsCrOS, 453 kOsWin | kOsMac | kOsLinux | kOsCrOS,
440 SINGLE_VALUE_TYPE(switches::kEnableAsyncDns) 454 SINGLE_VALUE_TYPE(switches::kEnableAsyncDns)
441 }, 455 },
442 { 456 {
443 "enable-video-track", 457 "enable-video-track",
444 IDS_FLAGS_ENABLE_VIDEO_TRACK_NAME, 458 IDS_FLAGS_ENABLE_VIDEO_TRACK_NAME,
445 IDS_FLAGS_ENABLE_VIDEO_TRACK_DESCRIPTION, 459 IDS_FLAGS_ENABLE_VIDEO_TRACK_DESCRIPTION,
(...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
1056 } 1070 }
1057 1071
1058 const Experiment* GetExperiments(size_t* count) { 1072 const Experiment* GetExperiments(size_t* count) {
1059 *count = num_experiments; 1073 *count = num_experiments;
1060 return experiments; 1074 return experiments;
1061 } 1075 }
1062 1076
1063 } // namespace testing 1077 } // namespace testing
1064 1078
1065 } // namespace about_flags 1079 } // 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