| 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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 | 529 |
| 530 extern const char kPasswordForceSavingName[]; | 530 extern const char kPasswordForceSavingName[]; |
| 531 extern const char kPasswordForceSavingDescription[]; | 531 extern const char kPasswordForceSavingDescription[]; |
| 532 | 532 |
| 533 extern const char kPasswordGenerationName[]; | 533 extern const char kPasswordGenerationName[]; |
| 534 extern const char kPasswordGenerationDescription[]; | 534 extern const char kPasswordGenerationDescription[]; |
| 535 | 535 |
| 536 extern const char kPasswordImportExportName[]; | 536 extern const char kPasswordImportExportName[]; |
| 537 extern const char kPasswordImportExportDescription[]; | 537 extern const char kPasswordImportExportDescription[]; |
| 538 | 538 |
| 539 extern const char kPredictorPreconnectName[]; |
| 540 extern const char kPredictorPreconnectDescription[]; |
| 541 |
| 539 extern const char kPermissionActionReportingName[]; | 542 extern const char kPermissionActionReportingName[]; |
| 540 extern const char kPermissionActionReportingDescription[]; | 543 extern const char kPermissionActionReportingDescription[]; |
| 541 | 544 |
| 542 extern const char kPermissionsBlacklistName[]; | 545 extern const char kPermissionsBlacklistName[]; |
| 543 extern const char kPermissionsBlacklistDescription[]; | 546 extern const char kPermissionsBlacklistDescription[]; |
| 544 | 547 |
| 545 extern const char kPinchScaleName[]; | 548 extern const char kPinchScaleName[]; |
| 546 extern const char kPinchScaleDescription[]; | 549 extern const char kPinchScaleDescription[]; |
| 547 | 550 |
| 548 extern const char kPreferHtmlOverPluginsName[]; | 551 extern const char kPreferHtmlOverPluginsName[]; |
| (...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1482 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1485 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1483 | 1486 |
| 1484 // ============================================================================ | 1487 // ============================================================================ |
| 1485 // Don't just add flags to the end, put them in the right section in | 1488 // Don't just add flags to the end, put them in the right section in |
| 1486 // alphabetical order. See top instructions for more. | 1489 // alphabetical order. See top instructions for more. |
| 1487 // ============================================================================ | 1490 // ============================================================================ |
| 1488 | 1491 |
| 1489 } // namespace flag_descriptions | 1492 } // namespace flag_descriptions |
| 1490 | 1493 |
| 1491 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1494 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |