Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Side by Side Diff: chrome/browser/flag_descriptions.cc

Issue 2780823002: Uses copy request to flatten the layers to do screen rotation animation. (Closed)
Patch Set: Remove duplicated entry in flags. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 kAshEnableSmoothScreenRotationAnimationName[] =
726 "Enable smooth rotation animations.";
727
728 const char kAshEnableSmoothScreenRotationAnimationDescription[] =
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698