| 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 809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 820 // Description for the flag that sets the material design ink drop animtion | 820 // Description for the flag that sets the material design ink drop animtion |
| 821 // speed. | 821 // speed. |
| 822 extern const char kMaterialDesignInkDropAnimationSpeedDescription[]; | 822 extern const char kMaterialDesignInkDropAnimationSpeedDescription[]; |
| 823 | 823 |
| 824 // Name for the flag that enables slow UI animations. | 824 // Name for the flag that enables slow UI animations. |
| 825 extern const char kUiSlowAnimationsName[]; | 825 extern const char kUiSlowAnimationsName[]; |
| 826 | 826 |
| 827 // Description for the flag that enables slow UI animations. | 827 // Description for the flag that enables slow UI animations. |
| 828 extern const char kUiSlowAnimationsDescription[]; | 828 extern const char kUiSlowAnimationsDescription[]; |
| 829 | 829 |
| 830 // Name for the flag to show UI composited layer borders. |
| 831 extern const char kUiShowCompositedLayerBordersName[]; |
| 832 |
| 833 // Description for the flag to show UI composited layer borders. |
| 834 extern const char kUiShowCompositedLayerBordersDescription[]; |
| 835 |
| 836 // Description of the flag option to show renderpass borders. |
| 837 extern const char kUiShowCompositedLayerBordersRenderPass[]; |
| 838 |
| 839 // Description of the flag option to show surface borders. |
| 840 extern const char kUiShowCompositedLayerBordersSurface[]; |
| 841 |
| 842 // Description of the flag option to show layer borders. |
| 843 extern const char kUiShowCompositedLayerBordersLayer[]; |
| 844 |
| 845 // Description of the flag option to show all borders. |
| 846 extern const char kUiShowCompositedLayerBordersAll[]; |
| 847 |
| 830 #endif // defined(USE_ASH) | 848 #endif // defined(USE_ASH) |
| 831 | 849 |
| 832 // Title for the flag for latest (non-experimental) JavaScript fatures | 850 // Title for the flag for latest (non-experimental) JavaScript fatures |
| 833 extern const char kJavascriptHarmonyShippingName[]; | 851 extern const char kJavascriptHarmonyShippingName[]; |
| 834 | 852 |
| 835 // Description for the flag for latest (non-experimental) JavaScript fatures | 853 // Description for the flag for latest (non-experimental) JavaScript fatures |
| 836 extern const char kJavascriptHarmonyShippingDescription[]; | 854 extern const char kJavascriptHarmonyShippingDescription[]; |
| 837 | 855 |
| 838 // Title for the flag to enable JavaScript Harmony features. | 856 // Title for the flag to enable JavaScript Harmony features. |
| 839 extern const char kJavascriptHarmonyName[]; | 857 extern const char kJavascriptHarmonyName[]; |
| (...skipping 2392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3232 extern const char kEnableCopylessPasteName[]; | 3250 extern const char kEnableCopylessPasteName[]; |
| 3233 | 3251 |
| 3234 // Description of the flag that enables Copyless Paste. | 3252 // Description of the flag that enables Copyless Paste. |
| 3235 extern const char kEnableCopylessPasteDescription[]; | 3253 extern const char kEnableCopylessPasteDescription[]; |
| 3236 | 3254 |
| 3237 #endif // defined(OS_ANDROID) | 3255 #endif // defined(OS_ANDROID) |
| 3238 | 3256 |
| 3239 } // namespace flag_descriptions | 3257 } // namespace flag_descriptions |
| 3240 | 3258 |
| 3241 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3259 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |