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 <string.h> | 7 #include <string.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <iterator> | 10 #include <iterator> |
(...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
699 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) | 699 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) |
700 }, | 700 }, |
701 { | 701 { |
702 "enable-vp9-playback", | 702 "enable-vp9-playback", |
703 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME, | 703 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME, |
704 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION, | 704 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION, |
705 kOsDesktop, | 705 kOsDesktop, |
706 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback) | 706 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback) |
707 }, | 707 }, |
708 { | 708 { |
| 709 "enable-vp8-alpha-playback", |
| 710 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_NAME, |
| 711 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_DESCRIPTION, |
| 712 kOsDesktop, |
| 713 SINGLE_VALUE_TYPE(switches::kEnableVp8AlphaPlayback) |
| 714 }, |
| 715 { |
709 "enable-managed-users", | 716 "enable-managed-users", |
710 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME, | 717 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME, |
711 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION, | 718 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION, |
712 kOsMac | kOsWin | kOsLinux | kOsAndroid | kOsCrOSOwnerOnly, | 719 kOsMac | kOsWin | kOsLinux | kOsAndroid | kOsCrOSOwnerOnly, |
713 SINGLE_VALUE_TYPE(switches::kEnableManagedUsers) | 720 SINGLE_VALUE_TYPE(switches::kEnableManagedUsers) |
714 }, | 721 }, |
715 #if defined(USE_ASH) | 722 #if defined(USE_ASH) |
716 { | 723 { |
717 "ash-disable-auto-maximizing", | 724 "ash-disable-auto-maximizing", |
718 IDS_FLAGS_ASH_AUTO_MAXIMIZING_NAME, | 725 IDS_FLAGS_ASH_AUTO_MAXIMIZING_NAME, |
(...skipping 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1858 } | 1865 } |
1859 | 1866 |
1860 const Experiment* GetExperiments(size_t* count) { | 1867 const Experiment* GetExperiments(size_t* count) { |
1861 *count = num_experiments; | 1868 *count = num_experiments; |
1862 return experiments; | 1869 return experiments; |
1863 } | 1870 } |
1864 | 1871 |
1865 } // namespace testing | 1872 } // namespace testing |
1866 | 1873 |
1867 } // namespace about_flags | 1874 } // namespace about_flags |
OLD | NEW |