| OLD | NEW |
| 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 Loading... |
| 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 { |
| 436 "enable-video-track", | 443 "enable-video-track", |
| 437 IDS_FLAGS_ENABLE_VIDEO_TRACK_NAME, | 444 IDS_FLAGS_ENABLE_VIDEO_TRACK_NAME, |
| 438 IDS_FLAGS_ENABLE_VIDEO_TRACK_DESCRIPTION, | 445 IDS_FLAGS_ENABLE_VIDEO_TRACK_DESCRIPTION, |
| 439 kOsAll, | 446 kOsAll, |
| 440 SINGLE_VALUE_TYPE(switches::kEnableVideoTrack) | 447 SINGLE_VALUE_TYPE(switches::kEnableVideoTrack) |
| 441 }, | 448 }, |
| 442 { | 449 { |
| 443 "enable-media-source", | 450 "enable-media-source", |
| 444 IDS_FLAGS_ENABLE_MEDIA_SOURCE_NAME, | 451 IDS_FLAGS_ENABLE_MEDIA_SOURCE_NAME, |
| 445 IDS_FLAGS_ENABLE_MEDIA_SOURCE_DESCRIPTION, | 452 IDS_FLAGS_ENABLE_MEDIA_SOURCE_DESCRIPTION, |
| (...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1049 } | 1056 } |
| 1050 | 1057 |
| 1051 const Experiment* GetExperiments(size_t* count) { | 1058 const Experiment* GetExperiments(size_t* count) { |
| 1052 *count = num_experiments; | 1059 *count = num_experiments; |
| 1053 return experiments; | 1060 return experiments; |
| 1054 } | 1061 } |
| 1055 | 1062 |
| 1056 } // namespace testing | 1063 } // namespace testing |
| 1057 | 1064 |
| 1058 } // namespace about_flags | 1065 } // namespace about_flags |
| OLD | NEW |