| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 SINGLE_VALUE_TYPE(switches::kEnableCrxlessWebApps) | 134 SINGLE_VALUE_TYPE(switches::kEnableCrxlessWebApps) |
| 135 }, | 135 }, |
| 136 { | 136 { |
| 137 "ignore-gpu-blacklist", | 137 "ignore-gpu-blacklist", |
| 138 IDS_FLAGS_IGNORE_GPU_BLACKLIST_NAME, | 138 IDS_FLAGS_IGNORE_GPU_BLACKLIST_NAME, |
| 139 IDS_FLAGS_IGNORE_GPU_BLACKLIST_DESCRIPTION, | 139 IDS_FLAGS_IGNORE_GPU_BLACKLIST_DESCRIPTION, |
| 140 kOsAll, | 140 kOsAll, |
| 141 SINGLE_VALUE_TYPE(switches::kIgnoreGpuBlacklist) | 141 SINGLE_VALUE_TYPE(switches::kIgnoreGpuBlacklist) |
| 142 }, | 142 }, |
| 143 { | 143 { |
| 144 "force-compositing-mode", | 144 "force-compositing-mode-2", |
| 145 IDS_FLAGS_FORCE_COMPOSITING_MODE_NAME, | 145 IDS_FLAGS_FORCE_COMPOSITING_MODE_NAME, |
| 146 IDS_FLAGS_FORCE_COMPOSITING_MODE_DESCRIPTION, | 146 IDS_FLAGS_FORCE_COMPOSITING_MODE_DESCRIPTION, |
| 147 kOsAll, | 147 kOsAll, |
| 148 SINGLE_VALUE_TYPE(switches::kForceCompositingMode) | 148 SINGLE_VALUE_TYPE(switches::kForceCompositingMode) |
| 149 }, | 149 }, |
| 150 { | 150 { |
| 151 "composited-layer-borders", | 151 "composited-layer-borders", |
| 152 IDS_FLAGS_COMPOSITED_LAYER_BORDERS, | 152 IDS_FLAGS_COMPOSITED_LAYER_BORDERS, |
| 153 IDS_FLAGS_COMPOSITED_LAYER_BORDERS_DESCRIPTION, | 153 IDS_FLAGS_COMPOSITED_LAYER_BORDERS_DESCRIPTION, |
| 154 kOsAll, | 154 kOsAll, |
| (...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 803 } | 803 } |
| 804 | 804 |
| 805 const Experiment* GetExperiments(size_t* count) { | 805 const Experiment* GetExperiments(size_t* count) { |
| 806 *count = num_experiments; | 806 *count = num_experiments; |
| 807 return experiments; | 807 return experiments; |
| 808 } | 808 } |
| 809 | 809 |
| 810 } // namespace testing | 810 } // namespace testing |
| 811 | 811 |
| 812 } // namespace about_flags | 812 } // namespace about_flags |
| OLD | NEW |