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

Unified Diff: cc/debug_colors.h

Issue 11280012: cc: Move the HUD debug colors into the cc::DebugColors class (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | cc/debug_colors.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug_colors.h
diff --git a/cc/debug_colors.h b/cc/debug_colors.h
index 75a616773daa804d09e05ac6fa495a5b52288835..bfa5395a4dc39a8f69e0b61bcbdbd57723e5619c 100644
--- a/cc/debug_colors.h
+++ b/cc/debug_colors.h
@@ -44,6 +44,34 @@ class DebugColors {
static SkColor EvictedTileCheckerboardColor();
static SkColor InvalidatedTileCheckerboardColor();
+ static SkColor PaintRectBorderColor();
+ static int PaintRectBorderWidth(const LayerTreeHostImpl* host_impl);
+ static SkColor PaintRectFillColor();
+
+ static SkColor PropertyChangedRectBorderColor();
+ static int PropertyChangedRectBorderWidth(const LayerTreeHostImpl* host_impl);
+ static SkColor PropertyChangedRectFillColor();
+
+ static SkColor SurfaceDamageRectBorderColor();
+ static int SurfaceDamageRectBorderWidth(const LayerTreeHostImpl* host_impl);
+ static SkColor SurfaceDamageRectFillColor();
+
+ static SkColor ScreenSpaceLayerRectBorderColor();
+ static int ScreenSpaceLayerRectBorderWidth(const LayerTreeHostImpl* host_impl);
+ static SkColor ScreenSpaceLayerRectFillColor();
+
+ static SkColor ScreenSpaceSurfaceReplicaRectBorderColor();
+ static int ScreenSpaceSurfaceReplicaRectBorderWidth(const LayerTreeHostImpl* host_impl);
+ static SkColor ScreenSpaceSurfaceReplicaRectFillColor();
+
+ static SkColor OccludingRectBorderColor();
+ static int OccludingRectBorderWidth(const LayerTreeHostImpl* host_impl);
+ static SkColor OccludingRectFillColor();
+
+ static SkColor NonOccludingRectBorderColor();
+ static int NonOccludingRectBorderWidth(const LayerTreeHostImpl* host_impl);
+ static SkColor NonOccludingRectFillColor();
+
DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors);
};
« no previous file with comments | « no previous file | cc/debug_colors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698