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 1123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1134 { | 1134 { |
1135 "enable-avfoundation", | 1135 "enable-avfoundation", |
1136 IDS_FLAGS_ENABLE_AVFOUNDATION_NAME, | 1136 IDS_FLAGS_ENABLE_AVFOUNDATION_NAME, |
1137 IDS_FLAGS_ENABLE_AVFOUNDATION_DESCRIPTION, | 1137 IDS_FLAGS_ENABLE_AVFOUNDATION_DESCRIPTION, |
1138 kOsMac, | 1138 kOsMac, |
1139 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAVFoundation, | 1139 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAVFoundation, |
1140 switches::kForceQTKit) | 1140 switches::kForceQTKit) |
1141 }, | 1141 }, |
1142 #endif | 1142 #endif |
1143 { | 1143 { |
1144 "impl-side-painting", | |
1145 IDS_FLAGS_IMPL_SIDE_PAINTING_NAME, | |
1146 IDS_FLAGS_IMPL_SIDE_PAINTING_DESCRIPTION, | |
1147 kOsAll, | |
1148 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableImplSidePainting, | |
1149 switches::kDisableImplSidePainting) | |
1150 }, | |
1151 { | |
1152 "lcd-text-aa", | 1144 "lcd-text-aa", |
1153 IDS_FLAGS_LCD_TEXT_NAME, | 1145 IDS_FLAGS_LCD_TEXT_NAME, |
1154 IDS_FLAGS_LCD_TEXT_DESCRIPTION, | 1146 IDS_FLAGS_LCD_TEXT_DESCRIPTION, |
1155 kOsDesktop, | 1147 kOsDesktop, |
1156 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableLCDText, | 1148 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableLCDText, |
1157 switches::kDisableLCDText) | 1149 switches::kDisableLCDText) |
1158 }, | 1150 }, |
1159 #if defined(OS_ANDROID) || defined(OS_MACOSX) | 1151 #if defined(OS_ANDROID) || defined(OS_MACOSX) |
1160 { | 1152 { |
1161 "delegated-renderer", | 1153 "delegated-renderer", |
(...skipping 1545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2707 } | 2699 } |
2708 | 2700 |
2709 const Experiment* GetExperiments(size_t* count) { | 2701 const Experiment* GetExperiments(size_t* count) { |
2710 *count = num_experiments; | 2702 *count = num_experiments; |
2711 return experiments; | 2703 return experiments; |
2712 } | 2704 } |
2713 | 2705 |
2714 } // namespace testing | 2706 } // namespace testing |
2715 | 2707 |
2716 } // namespace about_flags | 2708 } // namespace about_flags |
OLD | NEW |