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

Unified Diff: cc/debug_colors.cc

Issue 12316084: cc: Consolidate the analysis_canvas operations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/debug_colors.h ('k') | cc/layer_tree_host_impl.cc » ('j') | cc/picture.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug_colors.cc
diff --git a/cc/debug_colors.cc b/cc/debug_colors.cc
index e41435d759ac168b8e4610417f959cb1d543b0d1..abf1161cc638cac4004fd13996dc19b89f5054b0 100644
--- a/cc/debug_colors.cc
+++ b/cc/debug_colors.cc
@@ -68,6 +68,10 @@ int DebugColors::MissingTileBorderWidth(const LayerTreeImpl* tree_impl) { return
SkColor DebugColors::CulledTileBorderColor() { return SkColorSetARGB(120, 160, 100, 0); }
int DebugColors::CulledTileBorderWidth(const LayerTreeImpl* tree_impl) { return Scale(1, tree_impl); }
+// Solid color tile borders are grey.
+SkColor DebugColors::SolidColorTileBorderColor() { return SkColorSetARGB(128, 128, 128, 128); }
+int DebugColors::SolidColorTileBorderWidth(const LayerTreeImpl* tree_impl) { return Scale(1, tree_impl); }
+
// ======= Checkerboard colors =======
// Non-debug checkerboards are grey.
« no previous file with comments | « cc/debug_colors.h ('k') | cc/layer_tree_host_impl.cc » ('j') | cc/picture.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698