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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 SINGLE_VALUE_TYPE(switches::kDisableSoftwareRasterizer) | 529 SINGLE_VALUE_TYPE(switches::kDisableSoftwareRasterizer) |
530 }, | 530 }, |
531 { | 531 { |
532 "enable-media-stream", | 532 "enable-media-stream", |
533 IDS_FLAGS_MEDIA_STREAM_NAME, | 533 IDS_FLAGS_MEDIA_STREAM_NAME, |
534 IDS_FLAGS_MEDIA_STREAM_DESCRIPTION, | 534 IDS_FLAGS_MEDIA_STREAM_DESCRIPTION, |
535 kOsAll, | 535 kOsAll, |
536 SINGLE_VALUE_TYPE(switches::kEnableMediaStream) | 536 SINGLE_VALUE_TYPE(switches::kEnableMediaStream) |
537 }, | 537 }, |
538 { | 538 { |
539 "disable-uber-page", | |
540 IDS_FLAGS_DISABLE_UBER_PAGE_NAME, | |
541 IDS_FLAGS_DISABLE_UBER_PAGE_DESCRIPTION, | |
542 kOsAll, | |
543 SINGLE_VALUE_TYPE(switches::kDisableUberPage) | |
544 }, | |
545 { | |
546 "enable-shadow-dom", | 539 "enable-shadow-dom", |
547 IDS_FLAGS_SHADOW_DOM_NAME, | 540 IDS_FLAGS_SHADOW_DOM_NAME, |
548 IDS_FLAGS_SHADOW_DOM_DESCRIPTION, | 541 IDS_FLAGS_SHADOW_DOM_DESCRIPTION, |
549 kOsAll, | 542 kOsAll, |
550 SINGLE_VALUE_TYPE(switches::kEnableShadowDOM) | 543 SINGLE_VALUE_TYPE(switches::kEnableShadowDOM) |
551 }, | 544 }, |
552 { | 545 { |
553 "enable-style-scoped", | 546 "enable-style-scoped", |
554 IDS_FLAGS_STYLE_SCOPED_NAME, | 547 IDS_FLAGS_STYLE_SCOPED_NAME, |
555 IDS_FLAGS_STYLE_SCOPED_DESCRIPTION, | 548 IDS_FLAGS_STYLE_SCOPED_DESCRIPTION, |
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1056 } | 1049 } |
1057 | 1050 |
1058 const Experiment* GetExperiments(size_t* count) { | 1051 const Experiment* GetExperiments(size_t* count) { |
1059 *count = num_experiments; | 1052 *count = num_experiments; |
1060 return experiments; | 1053 return experiments; |
1061 } | 1054 } |
1062 | 1055 |
1063 } // namespace testing | 1056 } // namespace testing |
1064 | 1057 |
1065 } // namespace about_flags | 1058 } // namespace about_flags |
OLD | NEW |