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 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) | 691 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) |
692 }, | 692 }, |
693 { | 693 { |
694 "enable-vp9-playback", | 694 "enable-vp9-playback", |
695 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME, | 695 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME, |
696 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION, | 696 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION, |
697 kOsDesktop, | 697 kOsDesktop, |
698 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback) | 698 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback) |
699 }, | 699 }, |
700 { | 700 { |
| 701 "enable-vp8-alpha-playback", |
| 702 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_NAME, |
| 703 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_DESCRIPTION, |
| 704 kOsDesktop, |
| 705 SINGLE_VALUE_TYPE(switches::kEnableVp8AlphaPlayback) |
| 706 }, |
| 707 { |
701 "enable-managed-users", | 708 "enable-managed-users", |
702 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME, | 709 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME, |
703 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION, | 710 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION, |
704 kOsAll, | 711 kOsAll, |
705 SINGLE_VALUE_TYPE(switches::kEnableManagedUsers) | 712 SINGLE_VALUE_TYPE(switches::kEnableManagedUsers) |
706 }, | 713 }, |
707 #if defined(USE_ASH) | 714 #if defined(USE_ASH) |
708 { | 715 { |
709 "ash-disable-auto-window-placement", | 716 "ash-disable-auto-window-placement", |
710 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, | 717 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, |
(...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1687 } | 1694 } |
1688 | 1695 |
1689 const Experiment* GetExperiments(size_t* count) { | 1696 const Experiment* GetExperiments(size_t* count) { |
1690 *count = num_experiments; | 1697 *count = num_experiments; |
1691 return experiments; | 1698 return experiments; |
1692 } | 1699 } |
1693 | 1700 |
1694 } // namespace testing | 1701 } // namespace testing |
1695 | 1702 |
1696 } // namespace about_flags | 1703 } // namespace about_flags |
OLD | NEW |