| 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 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 793 // Description for the flag which can be used for support for javascript locking | 793 // Description for the flag which can be used for support for javascript locking |
| 794 // rotation | 794 // rotation |
| 795 extern const char kAshScreenOrientationLockDescription[]; | 795 extern const char kAshScreenOrientationLockDescription[]; |
| 796 | 796 |
| 797 // Title for the flag to enable the mirrored screen mode. | 797 // Title for the flag to enable the mirrored screen mode. |
| 798 extern const char kAshEnableMirroredScreenName[]; | 798 extern const char kAshEnableMirroredScreenName[]; |
| 799 | 799 |
| 800 // Description for the flag to enable the mirrored screen mode. | 800 // Description for the flag to enable the mirrored screen mode. |
| 801 extern const char kAshEnableMirroredScreenDescription[]; | 801 extern const char kAshEnableMirroredScreenDescription[]; |
| 802 | 802 |
| 803 // Title for the flag to enable smooth rotation animations. |
| 804 extern const char kAshEnableSmoothScreenRotationName[]; |
| 805 |
| 806 // Description for the flag to enable smooth rotation animations. |
| 807 extern const char kAshEnableSmoothScreenRotationDescription[]; |
| 808 |
| 803 // Description for the flag that sets material design ink drop animation speed | 809 // Description for the flag that sets material design ink drop animation speed |
| 804 // of fast. | 810 // of fast. |
| 805 extern const char kMaterialDesignInkDropAnimationFast[]; | 811 extern const char kMaterialDesignInkDropAnimationFast[]; |
| 806 | 812 |
| 807 // Description for the flag that sets material design ink drop anation speeds of | 813 // Description for the flag that sets material design ink drop anation speeds of |
| 808 // slow. | 814 // slow. |
| 809 extern const char kMaterialDesignInkDropAnimationSlow[]; | 815 extern const char kMaterialDesignInkDropAnimationSlow[]; |
| 810 | 816 |
| 811 // Name for the flag that sets the material design ink drop animation speed. | 817 // Name for the flag that sets the material design ink drop animation speed. |
| 812 extern const char kMaterialDesignInkDropAnimationSpeedName[]; | 818 extern const char kMaterialDesignInkDropAnimationSpeedName[]; |
| (...skipping 2356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3169 | 3175 |
| 3170 // Description of the about: flag enabling emoji, handwriting and voice input on | 3176 // Description of the about: flag enabling emoji, handwriting and voice input on |
| 3171 // opt-in IME menu. | 3177 // opt-in IME menu. |
| 3172 extern const char kEnableEhvInputDescription[]; | 3178 extern const char kEnableEhvInputDescription[]; |
| 3173 | 3179 |
| 3174 #endif // #if defined(OS_CHROMEOS) | 3180 #endif // #if defined(OS_CHROMEOS) |
| 3175 | 3181 |
| 3176 } // namespace flag_descriptions | 3182 } // namespace flag_descriptions |
| 3177 | 3183 |
| 3178 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3184 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |