| 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 1259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1270 extern const char kAggressiveCacheDiscardThresholds[]; | 1270 extern const char kAggressiveCacheDiscardThresholds[]; |
| 1271 extern const char kAggressiveTabDiscardThresholds[]; | 1271 extern const char kAggressiveTabDiscardThresholds[]; |
| 1272 extern const char kAggressiveThresholds[]; | 1272 extern const char kAggressiveThresholds[]; |
| 1273 | 1273 |
| 1274 extern const char kMtpWriteSupportName[]; | 1274 extern const char kMtpWriteSupportName[]; |
| 1275 extern const char kMtpWriteSupportDescription[]; | 1275 extern const char kMtpWriteSupportDescription[]; |
| 1276 | 1276 |
| 1277 extern const char kNetworkPortalNotificationName[]; | 1277 extern const char kNetworkPortalNotificationName[]; |
| 1278 extern const char kNetworkPortalNotificationDescription[]; | 1278 extern const char kNetworkPortalNotificationDescription[]; |
| 1279 | 1279 |
| 1280 extern const char kNetworkSettingsConfigName[]; |
| 1281 extern const char kNetworkSettingsConfigDescription[]; |
| 1282 |
| 1280 extern const char kNewKoreanImeName[]; | 1283 extern const char kNewKoreanImeName[]; |
| 1281 extern const char kNewKoreanImeDescription[]; | 1284 extern const char kNewKoreanImeDescription[]; |
| 1282 | 1285 |
| 1283 extern const char kNewZipUnpackerName[]; | 1286 extern const char kNewZipUnpackerName[]; |
| 1284 extern const char kNewZipUnpackerDescription[]; | 1287 extern const char kNewZipUnpackerDescription[]; |
| 1285 | 1288 |
| 1286 extern const char kPhysicalKeyboardAutocorrectName[]; | 1289 extern const char kPhysicalKeyboardAutocorrectName[]; |
| 1287 extern const char kPhysicalKeyboardAutocorrectDescription[]; | 1290 extern const char kPhysicalKeyboardAutocorrectDescription[]; |
| 1288 | 1291 |
| 1289 extern const char kPrinterProviderSearchAppName[]; | 1292 extern const char kPrinterProviderSearchAppName[]; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1453 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1456 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1454 | 1457 |
| 1455 // ============================================================================ | 1458 // ============================================================================ |
| 1456 // Don't just add flags to the end, put them in the right section in | 1459 // Don't just add flags to the end, put them in the right section in |
| 1457 // alphabetical order. See top instructions for more. | 1460 // alphabetical order. See top instructions for more. |
| 1458 // ============================================================================ | 1461 // ============================================================================ |
| 1459 | 1462 |
| 1460 } // namespace flag_descriptions | 1463 } // namespace flag_descriptions |
| 1461 | 1464 |
| 1462 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1465 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |