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

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: add debug border bitset 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 803 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 // Description for the flag that sets the material design ink drop animtion 814 // Description for the flag that sets the material design ink drop animtion
815 // speed. 815 // speed.
816 extern const char kMaterialDesignInkDropAnimationSpeedDescription[]; 816 extern const char kMaterialDesignInkDropAnimationSpeedDescription[];
817 817
818 // Name for the flag that enables slow UI animations. 818 // Name for the flag that enables slow UI animations.
819 extern const char kUiSlowAnimationsName[]; 819 extern const char kUiSlowAnimationsName[];
820 820
821 // Description for the flag that enables slow UI animations. 821 // Description for the flag that enables slow UI animations.
822 extern const char kUiSlowAnimationsDescription[]; 822 extern const char kUiSlowAnimationsDescription[];
823 823
824 // Name for the flag to show UI composited layer borders.
825 extern const char kUiShowCompositedLayerBordersName[];
826
827 // Description for the flag to show UI composited layer borders.
828 extern const char kUiShowCompositedLayerBordersDescription[];
829
830 // Description for the flag to show UI composited renderpass layer borders.
831 extern const char kUiShowCompositedLayerBordersRenderpass[];
832
833 // Description for the flag to show UI composited surface layer borders.
834 extern const char kUiShowCompositedLayerBordersSurface[];
835
836 // Description for the flag to show UI composited layer borders.
837 extern const char kUiShowCompositedLayerBordersLayer[];
838
839 // Description for the flag to show all UI composited layer borders.
840 extern const char kUiShowCompositedLayerBordersAll[];
841
824 #endif // defined(USE_ASH) 842 #endif // defined(USE_ASH)
825 843
826 // Title for the flag for latest (non-experimental) JavaScript fatures 844 // Title for the flag for latest (non-experimental) JavaScript fatures
827 extern const char kJavascriptHarmonyShippingName[]; 845 extern const char kJavascriptHarmonyShippingName[];
828 846
829 // Description for the flag for latest (non-experimental) JavaScript fatures 847 // Description for the flag for latest (non-experimental) JavaScript fatures
830 extern const char kJavascriptHarmonyShippingDescription[]; 848 extern const char kJavascriptHarmonyShippingDescription[];
831 849
832 // Title for the flag to enable JavaScript Harmony features. 850 // Title for the flag to enable JavaScript Harmony features.
833 extern const char kJavascriptHarmonyName[]; 851 extern const char kJavascriptHarmonyName[];
(...skipping 2324 matching lines...) Expand 10 before | Expand all | Expand 10 after
3158 3176
3159 // Description of the about: flag enabling emoji, handwriting and voice input on 3177 // Description of the about: flag enabling emoji, handwriting and voice input on
3160 // opt-in IME menu. 3178 // opt-in IME menu.
3161 extern const char kEnableEhvInputDescription[]; 3179 extern const char kEnableEhvInputDescription[];
3162 3180
3163 #endif // #if defined(OS_CHROMEOS) 3181 #endif // #if defined(OS_CHROMEOS)
3164 3182
3165 } // namespace flag_descriptions 3183 } // namespace flag_descriptions
3166 3184
3167 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3185 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698