| 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 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 kOsAll, | 636 kOsAll, |
| 637 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia) | 637 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia) |
| 638 }, | 638 }, |
| 639 { | 639 { |
| 640 "enable-opus-playback", | 640 "enable-opus-playback", |
| 641 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME, | 641 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME, |
| 642 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_DESCRIPTION, | 642 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_DESCRIPTION, |
| 643 kOsAll, | 643 kOsAll, |
| 644 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) | 644 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) |
| 645 }, | 645 }, |
| 646 { |
| 647 "enable-vp9-playback", |
| 648 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME, |
| 649 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION, |
| 650 kOsAll, |
| 651 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback) |
| 652 }, |
| 646 #if defined(USE_ASH) | 653 #if defined(USE_ASH) |
| 647 { | 654 { |
| 648 "ash-disable-auto-window-placement", | 655 "ash-disable-auto-window-placement", |
| 649 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, | 656 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, |
| 650 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_DESCRIPTION, | 657 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_DESCRIPTION, |
| 651 kOsWin | kOsLinux | kOsCrOS, | 658 kOsWin | kOsLinux | kOsCrOS, |
| 652 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoWindowPlacement) | 659 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoWindowPlacement) |
| 653 }, | 660 }, |
| 654 { | 661 { |
| 655 "ash-enable-per-app-launcher", | 662 "ash-enable-per-app-launcher", |
| (...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1618 } | 1625 } |
| 1619 | 1626 |
| 1620 const Experiment* GetExperiments(size_t* count) { | 1627 const Experiment* GetExperiments(size_t* count) { |
| 1621 *count = num_experiments; | 1628 *count = num_experiments; |
| 1622 return experiments; | 1629 return experiments; |
| 1623 } | 1630 } |
| 1624 | 1631 |
| 1625 } // namespace testing | 1632 } // namespace testing |
| 1626 | 1633 |
| 1627 } // namespace about_flags | 1634 } // namespace about_flags |
| OLD | NEW |