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

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

Issue 2795703002: ui: Add debug flag to show composited layer borders in ChromeOS UI. (Closed)
Patch Set: histograms.xml 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 809 matching lines...) Expand 10 before | Expand all | Expand 10 after
820 // Description for the flag that sets the material design ink drop animtion 820 // Description for the flag that sets the material design ink drop animtion
821 // speed. 821 // speed.
822 extern const char kMaterialDesignInkDropAnimationSpeedDescription[]; 822 extern const char kMaterialDesignInkDropAnimationSpeedDescription[];
823 823
824 // Name for the flag that enables slow UI animations. 824 // Name for the flag that enables slow UI animations.
825 extern const char kUiSlowAnimationsName[]; 825 extern const char kUiSlowAnimationsName[];
826 826
827 // Description for the flag that enables slow UI animations. 827 // Description for the flag that enables slow UI animations.
828 extern const char kUiSlowAnimationsDescription[]; 828 extern const char kUiSlowAnimationsDescription[];
829 829
830 // Name for the flag to show UI composited layer borders.
831 extern const char kUiShowCompositedLayerBordersName[];
832
833 // Description for the flag to show UI composited layer borders.
834 extern const char kUiShowCompositedLayerBordersDescription[];
835
836 // Description for the flag to show UI composited renderpass layer borders.
danakj 2017/04/13 22:35:42 i think renderpass layer isnt right, there's no la
reveman 2017/04/13 23:32:47 Done.
837 extern const char kUiShowCompositedLayerBordersRenderpass[];
838
839 // Description for the flag to show UI composited surface layer borders.
840 extern const char kUiShowCompositedLayerBordersSurface[];
841
842 // Description for the flag to show UI composited layer borders.
danakj 2017/04/13 22:35:42 This is the same text as on kUiShowCompositedLayer
reveman 2017/04/13 23:32:47 Changed all these to: "Description of the flag opt
843 extern const char kUiShowCompositedLayerBordersLayer[];
844
845 // Description for the flag to show all UI composited layer borders.
846 extern const char kUiShowCompositedLayerBordersAll[];
847
830 #endif // defined(USE_ASH) 848 #endif // defined(USE_ASH)
831 849
832 // Title for the flag for latest (non-experimental) JavaScript fatures 850 // Title for the flag for latest (non-experimental) JavaScript fatures
833 extern const char kJavascriptHarmonyShippingName[]; 851 extern const char kJavascriptHarmonyShippingName[];
834 852
835 // Description for the flag for latest (non-experimental) JavaScript fatures 853 // Description for the flag for latest (non-experimental) JavaScript fatures
836 extern const char kJavascriptHarmonyShippingDescription[]; 854 extern const char kJavascriptHarmonyShippingDescription[];
837 855
838 // Title for the flag to enable JavaScript Harmony features. 856 // Title for the flag to enable JavaScript Harmony features.
839 extern const char kJavascriptHarmonyName[]; 857 extern const char kJavascriptHarmonyName[];
(...skipping 2392 matching lines...) Expand 10 before | Expand all | Expand 10 after
3232 extern const char kEnableCopylessPasteName[]; 3250 extern const char kEnableCopylessPasteName[];
3233 3251
3234 // Description of the flag that enables Copyless Paste. 3252 // Description of the flag that enables Copyless Paste.
3235 extern const char kEnableCopylessPasteDescription[]; 3253 extern const char kEnableCopylessPasteDescription[];
3236 3254
3237 #endif // defined(OS_ANDROID) 3255 #endif // defined(OS_ANDROID)
3238 3256
3239 } // namespace flag_descriptions 3257 } // namespace flag_descriptions
3240 3258
3241 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3259 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698