| 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 1269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1280 extern const char kCrosRegionsModeDefault[]; | 1280 extern const char kCrosRegionsModeDefault[]; |
| 1281 extern const char kCrosRegionsModeOverride[]; | 1281 extern const char kCrosRegionsModeOverride[]; |
| 1282 extern const char kCrosRegionsModeHide[]; | 1282 extern const char kCrosRegionsModeHide[]; |
| 1283 | 1283 |
| 1284 extern const char kDisableNativeCupsName[]; | 1284 extern const char kDisableNativeCupsName[]; |
| 1285 extern const char kDisableNativeCupsDescription[]; | 1285 extern const char kDisableNativeCupsDescription[]; |
| 1286 | 1286 |
| 1287 extern const char kDisableNewVirtualKeyboardBehaviorName[]; | 1287 extern const char kDisableNewVirtualKeyboardBehaviorName[]; |
| 1288 extern const char kDisableNewVirtualKeyboardBehaviorDescription[]; | 1288 extern const char kDisableNewVirtualKeyboardBehaviorDescription[]; |
| 1289 | 1289 |
| 1290 extern const char kEnablePerUserTimezoneName[]; |
| 1291 extern const char kEnablePerUserTimezoneDescription[]; |
| 1292 |
| 1290 extern const char kDisableSystemTimezoneAutomaticDetectionName[]; | 1293 extern const char kDisableSystemTimezoneAutomaticDetectionName[]; |
| 1291 extern const char kDisableSystemTimezoneAutomaticDetectionDescription[]; | 1294 extern const char kDisableSystemTimezoneAutomaticDetectionDescription[]; |
| 1292 | 1295 |
| 1293 extern const char kDisplayColorCalibrationName[]; | 1296 extern const char kDisplayColorCalibrationName[]; |
| 1294 extern const char kDisplayColorCalibrationDescription[]; | 1297 extern const char kDisplayColorCalibrationDescription[]; |
| 1295 | 1298 |
| 1296 extern const char kEnableFullscreenAppListName[]; | 1299 extern const char kEnableFullscreenAppListName[]; |
| 1297 extern const char kEnableFullscreenAppListDescription[]; | 1300 extern const char kEnableFullscreenAppListDescription[]; |
| 1298 | 1301 |
| 1299 extern const char kEnableAndroidWallpapersAppName[]; | 1302 extern const char kEnableAndroidWallpapersAppName[]; |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1560 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1563 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1561 | 1564 |
| 1562 // ============================================================================ | 1565 // ============================================================================ |
| 1563 // Don't just add flags to the end, put them in the right section in | 1566 // Don't just add flags to the end, put them in the right section in |
| 1564 // alphabetical order. See top instructions for more. | 1567 // alphabetical order. See top instructions for more. |
| 1565 // ============================================================================ | 1568 // ============================================================================ |
| 1566 | 1569 |
| 1567 } // namespace flag_descriptions | 1570 } // namespace flag_descriptions |
| 1568 | 1571 |
| 1569 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1572 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |