| 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 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 extern const char kPassiveEventListenerForceAllTrue[]; | 720 extern const char kPassiveEventListenerForceAllTrue[]; |
| 721 | 721 |
| 722 // Name for the flag to adjust the default behaviour for passive event | 722 // Name for the flag to adjust the default behaviour for passive event |
| 723 // listeners. | 723 // listeners. |
| 724 extern const char kPassiveEventListenerDefaultName[]; | 724 extern const char kPassiveEventListenerDefaultName[]; |
| 725 | 725 |
| 726 // Description for the flag to adjust default behaviour for passive event | 726 // Description for the flag to adjust default behaviour for passive event |
| 727 // listeners. | 727 // listeners. |
| 728 extern const char kPassiveEventListenerDefaultDescription[]; | 728 extern const char kPassiveEventListenerDefaultDescription[]; |
| 729 | 729 |
| 730 #if defined(OS_ANDROID) | |
| 731 | |
| 732 // Title for the flag for including important sites whitelisting in the clear | 730 // Title for the flag for including important sites whitelisting in the clear |
| 733 // browsing dialog. | 731 // browsing dialog. |
| 734 extern const char kImportantSitesInCbdName[]; | 732 extern const char kImportantSitesInCbdName[]; |
| 735 | 733 |
| 736 // Description for the flag for using important sites whitelisting in the clear | 734 // Description for the flag for using important sites whitelisting in the clear |
| 737 // browsing dialog. | 735 // browsing dialog. |
| 738 extern const char kImportantSitesInCbdDescription[]; | 736 extern const char kImportantSitesInCbdDescription[]; |
| 739 | 737 |
| 740 #endif // defined(OS_ANDROID) | |
| 741 | |
| 742 #if defined(USE_ASH) | 738 #if defined(USE_ASH) |
| 743 | 739 |
| 744 // Title of the flag which specifies the shelf coloring in Chrome OS system UI. | 740 // Title of the flag which specifies the shelf coloring in Chrome OS system UI. |
| 745 extern const char kAshShelfColor[]; | 741 extern const char kAshShelfColor[]; |
| 746 | 742 |
| 747 // Description of the flag which specifies the shelf coloring in Chrome OS | 743 // Description of the flag which specifies the shelf coloring in Chrome OS |
| 748 // system UI. | 744 // system UI. |
| 749 extern const char kAshShelfColorDescription[]; | 745 extern const char kAshShelfColorDescription[]; |
| 750 | 746 |
| 751 // A shelf coloring style to be used by Chrome OS UI. | 747 // A shelf coloring style to be used by Chrome OS UI. |
| (...skipping 2395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3147 | 3143 |
| 3148 // Description of the about: flag enabling emoji, handwriting and voice input on | 3144 // Description of the about: flag enabling emoji, handwriting and voice input on |
| 3149 // opt-in IME menu. | 3145 // opt-in IME menu. |
| 3150 extern const char kEnableEhvInputDescription[]; | 3146 extern const char kEnableEhvInputDescription[]; |
| 3151 | 3147 |
| 3152 #endif // #if defined(OS_CHROMEOS) | 3148 #endif // #if defined(OS_CHROMEOS) |
| 3153 | 3149 |
| 3154 } // namespace flag_descriptions | 3150 } // namespace flag_descriptions |
| 3155 | 3151 |
| 3156 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3152 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |