| 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 <iterator> | 7 #include <iterator> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 1114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1125 { | 1125 { |
| 1126 "enable-avfoundation", | 1126 "enable-avfoundation", |
| 1127 IDS_FLAGS_ENABLE_AVFOUNDATION_NAME, | 1127 IDS_FLAGS_ENABLE_AVFOUNDATION_NAME, |
| 1128 IDS_FLAGS_ENABLE_AVFOUNDATION_DESCRIPTION, | 1128 IDS_FLAGS_ENABLE_AVFOUNDATION_DESCRIPTION, |
| 1129 kOsMac, | 1129 kOsMac, |
| 1130 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAVFoundation, | 1130 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAVFoundation, |
| 1131 switches::kForceQTKit) | 1131 switches::kForceQTKit) |
| 1132 }, | 1132 }, |
| 1133 #endif | 1133 #endif |
| 1134 { | 1134 { |
| 1135 "impl-side-painting", |
| 1136 IDS_FLAGS_IMPL_SIDE_PAINTING_NAME, |
| 1137 IDS_FLAGS_IMPL_SIDE_PAINTING_DESCRIPTION, |
| 1138 kOsAll, |
| 1139 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableImplSidePainting, |
| 1140 switches::kDisableImplSidePainting) |
| 1141 }, |
| 1142 { |
| 1135 "lcd-text-aa", | 1143 "lcd-text-aa", |
| 1136 IDS_FLAGS_LCD_TEXT_NAME, | 1144 IDS_FLAGS_LCD_TEXT_NAME, |
| 1137 IDS_FLAGS_LCD_TEXT_DESCRIPTION, | 1145 IDS_FLAGS_LCD_TEXT_DESCRIPTION, |
| 1138 kOsDesktop, | 1146 kOsDesktop, |
| 1139 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableLCDText, | 1147 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableLCDText, |
| 1140 switches::kDisableLCDText) | 1148 switches::kDisableLCDText) |
| 1141 }, | 1149 }, |
| 1142 #if defined(OS_ANDROID) || defined(OS_MACOSX) | 1150 #if defined(OS_ANDROID) || defined(OS_MACOSX) |
| 1143 { | 1151 { |
| 1144 "delegated-renderer", | 1152 "delegated-renderer", |
| (...skipping 1524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2669 } | 2677 } |
| 2670 | 2678 |
| 2671 const Experiment* GetExperiments(size_t* count) { | 2679 const Experiment* GetExperiments(size_t* count) { |
| 2672 *count = num_experiments; | 2680 *count = num_experiments; |
| 2673 return experiments; | 2681 return experiments; |
| 2674 } | 2682 } |
| 2675 | 2683 |
| 2676 } // namespace testing | 2684 } // namespace testing |
| 2677 | 2685 |
| 2678 } // namespace about_flags | 2686 } // namespace about_flags |
| OLD | NEW |