| 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 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 kOsAll, | 650 kOsAll, |
| 651 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia) | 651 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia) |
| 652 }, | 652 }, |
| 653 { | 653 { |
| 654 "enable-opus-playback", | 654 "enable-opus-playback", |
| 655 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME, | 655 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME, |
| 656 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_DESCRIPTION, | 656 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_DESCRIPTION, |
| 657 kOsAll, | 657 kOsAll, |
| 658 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) | 658 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) |
| 659 }, | 659 }, |
| 660 { |
| 661 "enable-vp9-playback", |
| 662 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME, |
| 663 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION, |
| 664 kOsAll, |
| 665 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback) |
| 666 }, |
| 660 #if defined(USE_ASH) | 667 #if defined(USE_ASH) |
| 661 { | 668 { |
| 662 "ash-disable-auto-window-placement", | 669 "ash-disable-auto-window-placement", |
| 663 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, | 670 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, |
| 664 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_DESCRIPTION, | 671 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_DESCRIPTION, |
| 665 kOsWin | kOsLinux | kOsCrOS, | 672 kOsWin | kOsLinux | kOsCrOS, |
| 666 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoWindowPlacement) | 673 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoWindowPlacement) |
| 667 }, | 674 }, |
| 668 { | 675 { |
| 669 "ash-enable-per-app-launcher", | 676 "ash-enable-per-app-launcher", |
| (...skipping 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1659 } | 1666 } |
| 1660 | 1667 |
| 1661 const Experiment* GetExperiments(size_t* count) { | 1668 const Experiment* GetExperiments(size_t* count) { |
| 1662 *count = num_experiments; | 1669 *count = num_experiments; |
| 1663 return experiments; | 1670 return experiments; |
| 1664 } | 1671 } |
| 1665 | 1672 |
| 1666 } // namespace testing | 1673 } // namespace testing |
| 1667 | 1674 |
| 1668 } // namespace about_flags | 1675 } // namespace about_flags |
| OLD | NEW |