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

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

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 #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 731 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 "Material Design Ink Drop Animation Speed"; 742 "Material Design Ink Drop Animation Speed";
743 743
744 const char kMaterialDesignInkDropAnimationSpeedDescription[] = 744 const char kMaterialDesignInkDropAnimationSpeedDescription[] =
745 "Sets the speed of the experimental visual feedback animations for " 745 "Sets the speed of the experimental visual feedback animations for "
746 "material design."; 746 "material design.";
747 747
748 const char kUiSlowAnimationsName[] = "Slow UI animations"; 748 const char kUiSlowAnimationsName[] = "Slow UI animations";
749 749
750 const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow."; 750 const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow.";
751 751
752 const char kUiShowCompositedLayerBordersName[] =
753 "Show UI composited layer borders";
754
755 const char kUiShowCompositedLayerBordersDescription[] =
756 "Show border around composited layers created by UI.";
757
758 const char kUiShowCompositedLayerBordersRenderpass[] = "Renderpass";
759
760 const char kUiShowCompositedLayerBordersSurface[] = "Surface";
761
762 const char kUiShowCompositedLayerBordersLayer[] = "Layer";
763
764 const char kUiShowCompositedLayerBordersAll[] = "All";
765
752 #endif // defined(USE_ASH) 766 #endif // defined(USE_ASH)
753 767
754 const char kJavascriptHarmonyShippingName[] = 768 const char kJavascriptHarmonyShippingName[] =
755 "Latest stable JavaScript features"; 769 "Latest stable JavaScript features";
756 770
757 const char kJavascriptHarmonyShippingDescription[] = 771 const char kJavascriptHarmonyShippingDescription[] =
758 "Some web pages use legacy or non-standard JavaScript extensions that " 772 "Some web pages use legacy or non-standard JavaScript extensions that "
759 "may conflict with the latest JavaScript features. This flag allows " 773 "may conflict with the latest JavaScript features. This flag allows "
760 "disabling support of those features for compatibility with such " 774 "disabling support of those features for compatibility with such "
761 "pages."; 775 "pages.";
(...skipping 2147 matching lines...) Expand 10 before | Expand all | Expand 10 after
2909 const char kEnableEhvInputName[] = 2923 const char kEnableEhvInputName[] =
2910 "Emoji, handwriting and voice input on opt-in IME menu"; 2924 "Emoji, handwriting and voice input on opt-in IME menu";
2911 2925
2912 const char kEnableEhvInputDescription[] = 2926 const char kEnableEhvInputDescription[] =
2913 "Enable access to emoji, handwriting and voice input form opt-in IME " 2927 "Enable access to emoji, handwriting and voice input form opt-in IME "
2914 "menu."; 2928 "menu.";
2915 2929
2916 #endif // #if defined(OS_CHROMEOS) 2930 #endif // #if defined(OS_CHROMEOS)
2917 2931
2918 } // namespace flag_descriptions 2932 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698