| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 7 | 7 |
| 8 // Includes needed for macros allowing conditional compilation of some strings. | 8 // Includes needed for macros allowing conditional compilation of some strings. |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "build/buildflag.h" | 10 #include "build/buildflag.h" |
| (...skipping 1189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1200 | 1200 |
| 1201 extern const char kCrosRegionsModeName[]; | 1201 extern const char kCrosRegionsModeName[]; |
| 1202 extern const char kCrosRegionsModeDescription[]; | 1202 extern const char kCrosRegionsModeDescription[]; |
| 1203 extern const char kCrosRegionsModeDefault[]; | 1203 extern const char kCrosRegionsModeDefault[]; |
| 1204 extern const char kCrosRegionsModeOverride[]; | 1204 extern const char kCrosRegionsModeOverride[]; |
| 1205 extern const char kCrosRegionsModeHide[]; | 1205 extern const char kCrosRegionsModeHide[]; |
| 1206 | 1206 |
| 1207 extern const char kDisableNativeCupsName[]; | 1207 extern const char kDisableNativeCupsName[]; |
| 1208 extern const char kDisableNativeCupsDescription[]; | 1208 extern const char kDisableNativeCupsDescription[]; |
| 1209 | 1209 |
| 1210 extern const char kDisableNewVirtualKeyboardBehaviorName[]; |
| 1211 extern const char kDisableNewVirtualKeyboardBehaviorDescription[]; |
| 1212 |
| 1210 extern const char kDisableSystemTimezoneAutomaticDetectionName[]; | 1213 extern const char kDisableSystemTimezoneAutomaticDetectionName[]; |
| 1211 extern const char kDisableSystemTimezoneAutomaticDetectionDescription[]; | 1214 extern const char kDisableSystemTimezoneAutomaticDetectionDescription[]; |
| 1212 | 1215 |
| 1213 extern const char kDisplayColorCalibrationName[]; | 1216 extern const char kDisplayColorCalibrationName[]; |
| 1214 extern const char kDisplayColorCalibrationDescription[]; | 1217 extern const char kDisplayColorCalibrationDescription[]; |
| 1215 | 1218 |
| 1216 extern const char kEnableAndroidWallpapersAppName[]; | 1219 extern const char kEnableAndroidWallpapersAppName[]; |
| 1217 extern const char kEnableAndroidWallpapersAppDescription[]; | 1220 extern const char kEnableAndroidWallpapersAppDescription[]; |
| 1218 | 1221 |
| 1219 extern const char kEnableChromevoxArcSupportName[]; | 1222 extern const char kEnableChromevoxArcSupportName[]; |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1450 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1453 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1451 | 1454 |
| 1452 // ============================================================================ | 1455 // ============================================================================ |
| 1453 // Don't just add flags to the end, put them in the right section in | 1456 // Don't just add flags to the end, put them in the right section in |
| 1454 // alphabetical order. See top instructions for more. | 1457 // alphabetical order. See top instructions for more. |
| 1455 // ============================================================================ | 1458 // ============================================================================ |
| 1456 | 1459 |
| 1457 } // namespace flag_descriptions | 1460 } // namespace flag_descriptions |
| 1458 | 1461 |
| 1459 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1462 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |