| 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 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 extern const char kPassiveEventListenerForceAllTrue[]; | 733 extern const char kPassiveEventListenerForceAllTrue[]; |
| 734 | 734 |
| 735 // Name for the flag to adjust the default behaviour for passive event | 735 // Name for the flag to adjust the default behaviour for passive event |
| 736 // listeners. | 736 // listeners. |
| 737 extern const char kPassiveEventListenerDefaultName[]; | 737 extern const char kPassiveEventListenerDefaultName[]; |
| 738 | 738 |
| 739 // Description for the flag to adjust default behaviour for passive event | 739 // Description for the flag to adjust default behaviour for passive event |
| 740 // listeners. | 740 // listeners. |
| 741 extern const char kPassiveEventListenerDefaultDescription[]; | 741 extern const char kPassiveEventListenerDefaultDescription[]; |
| 742 | 742 |
| 743 #if defined(OS_ANDROID) | |
| 744 | |
| 745 // Title for the flag for including important sites whitelisting in the clear | 743 // Title for the flag for including important sites whitelisting in the clear |
| 746 // browsing dialog. | 744 // browsing dialog. |
| 747 extern const char kImportantSitesInCbdName[]; | 745 extern const char kImportantSitesInCbdName[]; |
| 748 | 746 |
| 749 // Description for the flag for using important sites whitelisting in the clear | 747 // Description for the flag for using important sites whitelisting in the clear |
| 750 // browsing dialog. | 748 // browsing dialog. |
| 751 extern const char kImportantSitesInCbdDescription[]; | 749 extern const char kImportantSitesInCbdDescription[]; |
| 752 | 750 |
| 753 #endif // defined(OS_ANDROID) | |
| 754 | |
| 755 #if defined(USE_ASH) | 751 #if defined(USE_ASH) |
| 756 | 752 |
| 757 // Title of the flag which specifies the shelf coloring in Chrome OS system UI. | 753 // Title of the flag which specifies the shelf coloring in Chrome OS system UI. |
| 758 extern const char kAshShelfColor[]; | 754 extern const char kAshShelfColor[]; |
| 759 | 755 |
| 760 // Description of the flag which specifies the shelf coloring in Chrome OS | 756 // Description of the flag which specifies the shelf coloring in Chrome OS |
| 761 // system UI. | 757 // system UI. |
| 762 extern const char kAshShelfColorDescription[]; | 758 extern const char kAshShelfColorDescription[]; |
| 763 | 759 |
| 764 // Title of the flag which specifies the shelf coloring scheme in Chrome OS | 760 // Title of the flag which specifies the shelf coloring scheme in Chrome OS |
| (...skipping 2586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3351 extern const char kEnableHeapProfilingDescription[]; | 3347 extern const char kEnableHeapProfilingDescription[]; |
| 3352 | 3348 |
| 3353 // Descriptions of the different heap profiling modes. | 3349 // Descriptions of the different heap profiling modes. |
| 3354 extern const char kEnableHeapProfilingModePseudo[]; | 3350 extern const char kEnableHeapProfilingModePseudo[]; |
| 3355 extern const char kEnableHeapProfilingModeNative[]; | 3351 extern const char kEnableHeapProfilingModeNative[]; |
| 3356 extern const char kEnableHeapProfilingTaskProfiler[]; | 3352 extern const char kEnableHeapProfilingTaskProfiler[]; |
| 3357 | 3353 |
| 3358 } // namespace flag_descriptions | 3354 } // namespace flag_descriptions |
| 3359 | 3355 |
| 3360 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3356 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |