| 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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 "enable-vp8-alpha-playback", | 772 "enable-vp8-alpha-playback", |
| 773 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_NAME, | 773 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_NAME, |
| 774 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_DESCRIPTION, | 774 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_DESCRIPTION, |
| 775 kOsDesktop, | 775 kOsDesktop, |
| 776 SINGLE_VALUE_TYPE(switches::kEnableVp8AlphaPlayback) | 776 SINGLE_VALUE_TYPE(switches::kEnableVp8AlphaPlayback) |
| 777 }, | 777 }, |
| 778 { | 778 { |
| 779 "enable-managed-users", | 779 "enable-managed-users", |
| 780 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME, | 780 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME, |
| 781 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION, | 781 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION, |
| 782 kOsMac | kOsWin | kOsLinux | kOsAndroid | kOsCrOSOwnerOnly, | 782 kOsMac | kOsWin | kOsLinux | kOsCrOSOwnerOnly, |
| 783 SINGLE_VALUE_TYPE(switches::kEnableManagedUsers) | 783 SINGLE_VALUE_TYPE(switches::kEnableManagedUsers) |
| 784 }, | 784 }, |
| 785 #if defined(USE_ASH) | 785 #if defined(USE_ASH) |
| 786 { | 786 { |
| 787 "ash-disable-auto-maximizing", | 787 "ash-disable-auto-maximizing", |
| 788 IDS_FLAGS_ASH_AUTO_MAXIMIZING_NAME, | 788 IDS_FLAGS_ASH_AUTO_MAXIMIZING_NAME, |
| 789 IDS_FLAGS_ASH_AUTO_MAXIMIZING_DESCRIPTION, | 789 IDS_FLAGS_ASH_AUTO_MAXIMIZING_DESCRIPTION, |
| 790 kOsWin | kOsLinux | kOsCrOS, | 790 kOsWin | kOsLinux | kOsCrOS, |
| 791 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoMaximizing) | 791 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoMaximizing) |
| 792 }, | 792 }, |
| (...skipping 1263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2056 } | 2056 } |
| 2057 | 2057 |
| 2058 const Experiment* GetExperiments(size_t* count) { | 2058 const Experiment* GetExperiments(size_t* count) { |
| 2059 *count = num_experiments; | 2059 *count = num_experiments; |
| 2060 return experiments; | 2060 return experiments; |
| 2061 } | 2061 } |
| 2062 | 2062 |
| 2063 } // namespace testing | 2063 } // namespace testing |
| 2064 | 2064 |
| 2065 } // namespace about_flags | 2065 } // namespace about_flags |
| OLD | NEW |