| 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 1266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1277 | 1277 |
| 1278 extern const char kDisableNewVirtualKeyboardBehaviorName[]; | 1278 extern const char kDisableNewVirtualKeyboardBehaviorName[]; |
| 1279 extern const char kDisableNewVirtualKeyboardBehaviorDescription[]; | 1279 extern const char kDisableNewVirtualKeyboardBehaviorDescription[]; |
| 1280 | 1280 |
| 1281 extern const char kDisableSystemTimezoneAutomaticDetectionName[]; | 1281 extern const char kDisableSystemTimezoneAutomaticDetectionName[]; |
| 1282 extern const char kDisableSystemTimezoneAutomaticDetectionDescription[]; | 1282 extern const char kDisableSystemTimezoneAutomaticDetectionDescription[]; |
| 1283 | 1283 |
| 1284 extern const char kDisplayColorCalibrationName[]; | 1284 extern const char kDisplayColorCalibrationName[]; |
| 1285 extern const char kDisplayColorCalibrationDescription[]; | 1285 extern const char kDisplayColorCalibrationDescription[]; |
| 1286 | 1286 |
| 1287 extern const char kEnableFullscreenAppListName[]; |
| 1288 extern const char kEnableFullscreenAppListDescription[]; |
| 1289 |
| 1287 extern const char kEnableAndroidWallpapersAppName[]; | 1290 extern const char kEnableAndroidWallpapersAppName[]; |
| 1288 extern const char kEnableAndroidWallpapersAppDescription[]; | 1291 extern const char kEnableAndroidWallpapersAppDescription[]; |
| 1289 | 1292 |
| 1290 extern const char kEnableChromevoxArcSupportName[]; | 1293 extern const char kEnableChromevoxArcSupportName[]; |
| 1291 extern const char kEnableChromevoxArcSupportDescription[]; | 1294 extern const char kEnableChromevoxArcSupportDescription[]; |
| 1292 | 1295 |
| 1293 extern const char kEnableEhvInputName[]; | 1296 extern const char kEnableEhvInputName[]; |
| 1294 extern const char kEnableEhvInputDescription[]; | 1297 extern const char kEnableEhvInputDescription[]; |
| 1295 | 1298 |
| 1296 extern const char kEnableEncryptionMigrationName[]; | 1299 extern const char kEnableEncryptionMigrationName[]; |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1545 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1548 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1546 | 1549 |
| 1547 // ============================================================================ | 1550 // ============================================================================ |
| 1548 // Don't just add flags to the end, put them in the right section in | 1551 // Don't just add flags to the end, put them in the right section in |
| 1549 // alphabetical order. See top instructions for more. | 1552 // alphabetical order. See top instructions for more. |
| 1550 // ============================================================================ | 1553 // ============================================================================ |
| 1551 | 1554 |
| 1552 } // namespace flag_descriptions | 1555 } // namespace flag_descriptions |
| 1553 | 1556 |
| 1554 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1557 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |