| 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 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 // Description for the flag which can be used for support for javascript locking | 779 // Description for the flag which can be used for support for javascript locking |
| 780 // rotation | 780 // rotation |
| 781 extern const char kAshScreenOrientationLockDescription[]; | 781 extern const char kAshScreenOrientationLockDescription[]; |
| 782 | 782 |
| 783 // Title for the flag to enable the mirrored screen mode. | 783 // Title for the flag to enable the mirrored screen mode. |
| 784 extern const char kAshEnableMirroredScreenName[]; | 784 extern const char kAshEnableMirroredScreenName[]; |
| 785 | 785 |
| 786 // Description for the flag to enable the mirrored screen mode. | 786 // Description for the flag to enable the mirrored screen mode. |
| 787 extern const char kAshEnableMirroredScreenDescription[]; | 787 extern const char kAshEnableMirroredScreenDescription[]; |
| 788 | 788 |
| 789 // Title for the flag to enable the smoother screen rotation animation mode. |
| 790 extern const char kAshEnableSmoothScreenRotationName[]; |
| 791 |
| 792 // Description for the flag to enable the smoother screen rotation animation |
| 793 // mode. |
| 794 extern const char kAshEnableSmoothScreenRotationDescription[]; |
| 795 |
| 789 // Description for the flag that sets material design ink drop animation speed | 796 // Description for the flag that sets material design ink drop animation speed |
| 790 // of fast. | 797 // of fast. |
| 791 extern const char kMaterialDesignInkDropAnimationFast[]; | 798 extern const char kMaterialDesignInkDropAnimationFast[]; |
| 792 | 799 |
| 793 // Description for the flag that sets material design ink drop anation speeds of | 800 // Description for the flag that sets material design ink drop anation speeds of |
| 794 // slow. | 801 // slow. |
| 795 extern const char kMaterialDesignInkDropAnimationSlow[]; | 802 extern const char kMaterialDesignInkDropAnimationSlow[]; |
| 796 | 803 |
| 797 // Name for the flag that sets the material design ink drop animation speed. | 804 // Name for the flag that sets the material design ink drop animation speed. |
| 798 extern const char kMaterialDesignInkDropAnimationSpeedName[]; | 805 extern const char kMaterialDesignInkDropAnimationSpeedName[]; |
| (...skipping 2347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3146 | 3153 |
| 3147 // Description of the about: flag enabling emoji, handwriting and voice input on | 3154 // Description of the about: flag enabling emoji, handwriting and voice input on |
| 3148 // opt-in IME menu. | 3155 // opt-in IME menu. |
| 3149 extern const char kEnableEhvInputDescription[]; | 3156 extern const char kEnableEhvInputDescription[]; |
| 3150 | 3157 |
| 3151 #endif // #if defined(OS_CHROMEOS) | 3158 #endif // #if defined(OS_CHROMEOS) |
| 3152 | 3159 |
| 3153 } // namespace flag_descriptions | 3160 } // namespace flag_descriptions |
| 3154 | 3161 |
| 3155 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3162 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |