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 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
672 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) | 672 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) |
673 }, | 673 }, |
674 { | 674 { |
675 "enable-vp9-playback", | 675 "enable-vp9-playback", |
676 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME, | 676 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME, |
677 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION, | 677 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION, |
678 kOsDesktop, | 678 kOsDesktop, |
679 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback) | 679 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback) |
680 }, | 680 }, |
681 { | 681 { |
| 682 "enable-vp8-alpha-playback", |
| 683 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_NAME, |
| 684 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_DESCRIPTION, |
| 685 kOsDesktop, |
| 686 SINGLE_VALUE_TYPE(switches::kEnableVp8AlphaPlayback) |
| 687 }, |
| 688 { |
682 "enable-managed-users", | 689 "enable-managed-users", |
683 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME, | 690 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME, |
684 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION, | 691 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION, |
685 kOsAll, | 692 kOsAll, |
686 SINGLE_VALUE_TYPE(switches::kEnableManagedUsers) | 693 SINGLE_VALUE_TYPE(switches::kEnableManagedUsers) |
687 }, | 694 }, |
688 #if defined(USE_ASH) | 695 #if defined(USE_ASH) |
689 { | 696 { |
690 "ash-disable-auto-window-placement", | 697 "ash-disable-auto-window-placement", |
691 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, | 698 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, |
(...skipping 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1763 } | 1770 } |
1764 | 1771 |
1765 const Experiment* GetExperiments(size_t* count) { | 1772 const Experiment* GetExperiments(size_t* count) { |
1766 *count = num_experiments; | 1773 *count = num_experiments; |
1767 return experiments; | 1774 return experiments; |
1768 } | 1775 } |
1769 | 1776 |
1770 } // namespace testing | 1777 } // namespace testing |
1771 | 1778 |
1772 } // namespace about_flags | 1779 } // namespace about_flags |
OLD | NEW |