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 #include "chrome/browser/flag_descriptions.h" | 5 #include "chrome/browser/flag_descriptions.h" |
6 | 6 |
7 namespace flag_descriptions { | 7 namespace flag_descriptions { |
8 | 8 |
9 // Material Design version of chrome://bookmarks | 9 // Material Design version of chrome://bookmarks |
10 | 10 |
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 | 715 |
716 const char kAshScreenOrientationLockDescription[] = | 716 const char kAshScreenOrientationLockDescription[] = |
717 "Allows javascript to lock the screen orienation."; | 717 "Allows javascript to lock the screen orienation."; |
718 | 718 |
719 const char kAshEnableMirroredScreenName[] = "Enable mirrored screen mode."; | 719 const char kAshEnableMirroredScreenName[] = "Enable mirrored screen mode."; |
720 | 720 |
721 const char kAshEnableMirroredScreenDescription[] = | 721 const char kAshEnableMirroredScreenDescription[] = |
722 "Enable the mirrored screen mode. This mode flips the screen image " | 722 "Enable the mirrored screen mode. This mode flips the screen image " |
723 "horizontally."; | 723 "horizontally."; |
724 | 724 |
| 725 const char kAshEnableSmoothScreenRotationName[] = |
| 726 "Enable smooth rotation animations."; |
| 727 |
| 728 const char kAshEnableSmoothScreenRotationDescription[] = |
| 729 "Enable smooth rotation animations."; |
| 730 |
725 const char kMaterialDesignInkDropAnimationFast[] = "Fast"; | 731 const char kMaterialDesignInkDropAnimationFast[] = "Fast"; |
726 | 732 |
727 const char kMaterialDesignInkDropAnimationSlow[] = "Slow"; | 733 const char kMaterialDesignInkDropAnimationSlow[] = "Slow"; |
728 | 734 |
729 const char kMaterialDesignInkDropAnimationSpeedName[] = | 735 const char kMaterialDesignInkDropAnimationSpeedName[] = |
730 "Material Design Ink Drop Animation Speed"; | 736 "Material Design Ink Drop Animation Speed"; |
731 | 737 |
732 const char kMaterialDesignInkDropAnimationSpeedDescription[] = | 738 const char kMaterialDesignInkDropAnimationSpeedDescription[] = |
733 "Sets the speed of the experimental visual feedback animations for " | 739 "Sets the speed of the experimental visual feedback animations for " |
734 "material design."; | 740 "material design."; |
(...skipping 2165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2900 const char kEnableEhvInputName[] = | 2906 const char kEnableEhvInputName[] = |
2901 "Emoji, handwriting and voice input on opt-in IME menu"; | 2907 "Emoji, handwriting and voice input on opt-in IME menu"; |
2902 | 2908 |
2903 const char kEnableEhvInputDescription[] = | 2909 const char kEnableEhvInputDescription[] = |
2904 "Enable access to emoji, handwriting and voice input form opt-in IME " | 2910 "Enable access to emoji, handwriting and voice input form opt-in IME " |
2905 "menu."; | 2911 "menu."; |
2906 | 2912 |
2907 #endif // #if defined(OS_CHROMEOS) | 2913 #endif // #if defined(OS_CHROMEOS) |
2908 | 2914 |
2909 } // namespace flag_descriptions | 2915 } // namespace flag_descriptions |
OLD | NEW |