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 1204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1215 | 1215 |
1216 extern const char kEnableAndroidWallpapersAppName[]; | 1216 extern const char kEnableAndroidWallpapersAppName[]; |
1217 extern const char kEnableAndroidWallpapersAppDescription[]; | 1217 extern const char kEnableAndroidWallpapersAppDescription[]; |
1218 | 1218 |
1219 extern const char kEnableChromevoxArcSupportName[]; | 1219 extern const char kEnableChromevoxArcSupportName[]; |
1220 extern const char kEnableChromevoxArcSupportDescription[]; | 1220 extern const char kEnableChromevoxArcSupportDescription[]; |
1221 | 1221 |
1222 extern const char kEnableEhvInputName[]; | 1222 extern const char kEnableEhvInputName[]; |
1223 extern const char kEnableEhvInputDescription[]; | 1223 extern const char kEnableEhvInputDescription[]; |
1224 | 1224 |
| 1225 extern const char kNetworkSettingsConfigName[]; |
| 1226 extern const char kNetworkSettingsConfigDescription[]; |
| 1227 |
1225 extern const char kEnableEncryptionMigrationName[]; | 1228 extern const char kEnableEncryptionMigrationName[]; |
1226 extern const char kEnableEncryptionMigrationDescription[]; | 1229 extern const char kEnableEncryptionMigrationDescription[]; |
1227 | 1230 |
1228 extern const char kEnableImeMenuName[]; | 1231 extern const char kEnableImeMenuName[]; |
1229 extern const char kEnableImeMenuDescription[]; | 1232 extern const char kEnableImeMenuDescription[]; |
1230 | 1233 |
1231 extern const char kEnableTouchSupportForScreenMagnifierName[]; | 1234 extern const char kEnableTouchSupportForScreenMagnifierName[]; |
1232 extern const char kEnableTouchSupportForScreenMagnifierDescription[]; | 1235 extern const char kEnableTouchSupportForScreenMagnifierDescription[]; |
1233 | 1236 |
1234 extern const char kEnableZipArchiverOnFileManagerName[]; | 1237 extern const char kEnableZipArchiverOnFileManagerName[]; |
(...skipping 215 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 |