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

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

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 #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
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 smooth rotation animations.
oshima 2017/03/31 00:14:34 can you file a bug to cleanup the flag and add ref
wutao 2017/04/03 16:16:04 Created a http://crbug.com/707800 and added it to
790 extern const char kAshEnableSmoothScreenRotationAnimationName[];
791
792 // Description for the flag to enable smooth rotation animations.
793 extern const char kAshEnableSmoothScreenRotationAnimationDescription[];
794
789 // Description for the flag that sets material design ink drop animation speed 795 // Description for the flag that sets material design ink drop animation speed
790 // of fast. 796 // of fast.
791 extern const char kMaterialDesignInkDropAnimationFast[]; 797 extern const char kMaterialDesignInkDropAnimationFast[];
792 798
793 // Description for the flag that sets material design ink drop anation speeds of 799 // Description for the flag that sets material design ink drop anation speeds of
794 // slow. 800 // slow.
795 extern const char kMaterialDesignInkDropAnimationSlow[]; 801 extern const char kMaterialDesignInkDropAnimationSlow[];
796 802
797 // Name for the flag that sets the material design ink drop animation speed. 803 // Name for the flag that sets the material design ink drop animation speed.
798 extern const char kMaterialDesignInkDropAnimationSpeedName[]; 804 extern const char kMaterialDesignInkDropAnimationSpeedName[];
(...skipping 2347 matching lines...) Expand 10 before | Expand all | Expand 10 after
3146 3152
3147 // Description of the about: flag enabling emoji, handwriting and voice input on 3153 // Description of the about: flag enabling emoji, handwriting and voice input on
3148 // opt-in IME menu. 3154 // opt-in IME menu.
3149 extern const char kEnableEhvInputDescription[]; 3155 extern const char kEnableEhvInputDescription[];
3150 3156
3151 #endif // #if defined(OS_CHROMEOS) 3157 #endif // #if defined(OS_CHROMEOS)
3152 3158
3153 } // namespace flag_descriptions 3159 } // namespace flag_descriptions
3154 3160
3155 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3161 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698