| 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 { | |
| 1143 "lcd-text-aa", | 1135 "lcd-text-aa", |
| 1144 IDS_FLAGS_LCD_TEXT_NAME, | 1136 IDS_FLAGS_LCD_TEXT_NAME, |
| 1145 IDS_FLAGS_LCD_TEXT_DESCRIPTION, | 1137 IDS_FLAGS_LCD_TEXT_DESCRIPTION, |
| 1146 kOsDesktop, | 1138 kOsDesktop, |
| 1147 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableLCDText, | 1139 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableLCDText, |
| 1148 switches::kDisableLCDText) | 1140 switches::kDisableLCDText) |
| 1149 }, | 1141 }, |
| 1150 #if defined(OS_ANDROID) || defined(OS_MACOSX) | 1142 #if defined(OS_ANDROID) || defined(OS_MACOSX) |
| 1151 { | 1143 { |
| 1152 "delegated-renderer", | 1144 "delegated-renderer", |
| (...skipping 1524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2677 } | 2669 } |
| 2678 | 2670 |
| 2679 const Experiment* GetExperiments(size_t* count) { | 2671 const Experiment* GetExperiments(size_t* count) { |
| 2680 *count = num_experiments; | 2672 *count = num_experiments; |
| 2681 return experiments; | 2673 return experiments; |
| 2682 } | 2674 } |
| 2683 | 2675 |
| 2684 } // namespace testing | 2676 } // namespace testing |
| 2685 | 2677 |
| 2686 } // namespace about_flags | 2678 } // namespace about_flags |
| OLD | NEW |