| 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 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 727 | 727 |
| 728 const char kAshScreenOrientationLockDescription[] = | 728 const char kAshScreenOrientationLockDescription[] = |
| 729 "Allows javascript to lock the screen orienation."; | 729 "Allows javascript to lock the screen orienation."; |
| 730 | 730 |
| 731 const char kAshEnableMirroredScreenName[] = "Enable mirrored screen mode."; | 731 const char kAshEnableMirroredScreenName[] = "Enable mirrored screen mode."; |
| 732 | 732 |
| 733 const char kAshEnableMirroredScreenDescription[] = | 733 const char kAshEnableMirroredScreenDescription[] = |
| 734 "Enable the mirrored screen mode. This mode flips the screen image " | 734 "Enable the mirrored screen mode. This mode flips the screen image " |
| 735 "horizontally."; | 735 "horizontally."; |
| 736 | 736 |
| 737 const char kAshEnableSmoothScreenRotationName[] = |
| 738 "Enable smooth rotation animations."; |
| 739 |
| 740 const char kAshEnableSmoothScreenRotationDescription[] = |
| 741 "Enable smooth rotation animations."; |
| 742 |
| 737 const char kMaterialDesignInkDropAnimationFast[] = "Fast"; | 743 const char kMaterialDesignInkDropAnimationFast[] = "Fast"; |
| 738 | 744 |
| 739 const char kMaterialDesignInkDropAnimationSlow[] = "Slow"; | 745 const char kMaterialDesignInkDropAnimationSlow[] = "Slow"; |
| 740 | 746 |
| 741 const char kMaterialDesignInkDropAnimationSpeedName[] = | 747 const char kMaterialDesignInkDropAnimationSpeedName[] = |
| 742 "Material Design Ink Drop Animation Speed"; | 748 "Material Design Ink Drop Animation Speed"; |
| 743 | 749 |
| 744 const char kMaterialDesignInkDropAnimationSpeedDescription[] = | 750 const char kMaterialDesignInkDropAnimationSpeedDescription[] = |
| 745 "Sets the speed of the experimental visual feedback animations for " | 751 "Sets the speed of the experimental visual feedback animations for " |
| 746 "material design."; | 752 "material design."; |
| (...skipping 2174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2921 const char kEnableEhvInputName[] = | 2927 const char kEnableEhvInputName[] = |
| 2922 "Emoji, handwriting and voice input on opt-in IME menu"; | 2928 "Emoji, handwriting and voice input on opt-in IME menu"; |
| 2923 | 2929 |
| 2924 const char kEnableEhvInputDescription[] = | 2930 const char kEnableEhvInputDescription[] = |
| 2925 "Enable access to emoji, handwriting and voice input form opt-in IME " | 2931 "Enable access to emoji, handwriting and voice input form opt-in IME " |
| 2926 "menu."; | 2932 "menu."; |
| 2927 | 2933 |
| 2928 #endif // #if defined(OS_CHROMEOS) | 2934 #endif // #if defined(OS_CHROMEOS) |
| 2929 | 2935 |
| 2930 } // namespace flag_descriptions | 2936 } // namespace flag_descriptions |
| OLD | NEW |