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

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
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-video-track", 450 "enable-video-track",
437 IDS_FLAGS_ENABLE_VIDEO_TRACK_NAME, 451 IDS_FLAGS_ENABLE_VIDEO_TRACK_NAME,
438 IDS_FLAGS_ENABLE_VIDEO_TRACK_DESCRIPTION, 452 IDS_FLAGS_ENABLE_VIDEO_TRACK_DESCRIPTION,
439 kOsAll, 453 kOsAll,
440 SINGLE_VALUE_TYPE(switches::kEnableVideoTrack) 454 SINGLE_VALUE_TYPE(switches::kEnableVideoTrack)
441 }, 455 },
442 { 456 {
443 "enable-media-source", 457 "enable-media-source",
444 IDS_FLAGS_ENABLE_MEDIA_SOURCE_NAME, 458 IDS_FLAGS_ENABLE_MEDIA_SOURCE_NAME,
445 IDS_FLAGS_ENABLE_MEDIA_SOURCE_DESCRIPTION, 459 IDS_FLAGS_ENABLE_MEDIA_SOURCE_DESCRIPTION,
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
1049 } 1063 }
1050 1064
1051 const Experiment* GetExperiments(size_t* count) { 1065 const Experiment* GetExperiments(size_t* count) {
1052 *count = num_experiments; 1066 *count = num_experiments;
1053 return experiments; 1067 return experiments;
1054 } 1068 }
1055 1069
1056 } // namespace testing 1070 } // namespace testing
1057 1071
1058 } // namespace about_flags 1072 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698