| 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 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 732 extern const char kPassiveEventListenerForceAllTrue[]; | 732 extern const char kPassiveEventListenerForceAllTrue[]; |
| 733 | 733 |
| 734 // Name for the flag to adjust the default behaviour for passive event | 734 // Name for the flag to adjust the default behaviour for passive event |
| 735 // listeners. | 735 // listeners. |
| 736 extern const char kPassiveEventListenerDefaultName[]; | 736 extern const char kPassiveEventListenerDefaultName[]; |
| 737 | 737 |
| 738 // Description for the flag to adjust default behaviour for passive event | 738 // Description for the flag to adjust default behaviour for passive event |
| 739 // listeners. | 739 // listeners. |
| 740 extern const char kPassiveEventListenerDefaultDescription[]; | 740 extern const char kPassiveEventListenerDefaultDescription[]; |
| 741 | 741 |
| 742 #if defined(OS_ANDROID) | |
| 743 | |
| 744 // Title for the flag for including important sites whitelisting in the clear | 742 // Title for the flag for including important sites whitelisting in the clear |
| 745 // browsing dialog. | 743 // browsing dialog. |
| 746 extern const char kImportantSitesInCbdName[]; | 744 extern const char kImportantSitesInCbdName[]; |
| 747 | 745 |
| 748 // Description for the flag for using important sites whitelisting in the clear | 746 // Description for the flag for using important sites whitelisting in the clear |
| 749 // browsing dialog. | 747 // browsing dialog. |
| 750 extern const char kImportantSitesInCbdDescription[]; | 748 extern const char kImportantSitesInCbdDescription[]; |
| 751 | 749 |
| 752 #endif // defined(OS_ANDROID) | |
| 753 | |
| 754 #if defined(USE_ASH) | 750 #if defined(USE_ASH) |
| 755 | 751 |
| 756 // Title of the flag which specifies the shelf coloring in Chrome OS system UI. | 752 // Title of the flag which specifies the shelf coloring in Chrome OS system UI. |
| 757 extern const char kAshShelfColor[]; | 753 extern const char kAshShelfColor[]; |
| 758 | 754 |
| 759 // Description of the flag which specifies the shelf coloring in Chrome OS | 755 // Description of the flag which specifies the shelf coloring in Chrome OS |
| 760 // system UI. | 756 // system UI. |
| 761 extern const char kAshShelfColorDescription[]; | 757 extern const char kAshShelfColorDescription[]; |
| 762 | 758 |
| 763 // Title of the flag which specifies the shelf coloring scheme in Chrome OS | 759 // Title of the flag which specifies the shelf coloring scheme in Chrome OS |
| (...skipping 2639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3403 // a hard-reload. | 3399 // a hard-reload. |
| 3404 extern const char kLocationHardReloadDescription[]; | 3400 extern const char kLocationHardReloadDescription[]; |
| 3405 | 3401 |
| 3406 // Name and description for the capture-thumbnail-on-load-finished flag. | 3402 // Name and description for the capture-thumbnail-on-load-finished flag. |
| 3407 extern const char kCaptureThumbnailOnLoadFinishedName[]; | 3403 extern const char kCaptureThumbnailOnLoadFinishedName[]; |
| 3408 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; | 3404 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; |
| 3409 | 3405 |
| 3410 } // namespace flag_descriptions | 3406 } // namespace flag_descriptions |
| 3411 | 3407 |
| 3412 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3408 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |