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

Unified Diff: cc/debug/debug_colors.cc

Issue 1377823002: Change HUD colors to distinguish status easily. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed typecasting warning. Created 5 years, 2 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/debug_colors.h ('k') | cc/layers/heads_up_display_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug/debug_colors.cc
diff --git a/cc/debug/debug_colors.cc b/cc/debug/debug_colors.cc
index 38ecf54c8534e482ca50e475c37e71a698611d45..55d7119818e8415360621b30165b773872fd41e5 100644
--- a/cc/debug/debug_colors.cc
+++ b/cc/debug/debug_colors.cc
@@ -280,19 +280,24 @@ SkColor DebugColors::PictureBorderColor() {
// ======= HUD widget colors =======
SkColor DebugColors::HUDBackgroundColor() {
- return SkColorSetARGB(215, 17, 17, 17);
+ return SkColorSetARGB(208, 17, 17, 17);
}
SkColor DebugColors::HUDSeparatorLineColor() {
- return SkColorSetARGB(255, 130, 130, 130);
+ return SkColorSetARGB(64, 0, 255, 0);
}
SkColor DebugColors::HUDIndicatorLineColor() {
- return SkColorSetARGB(255, 80, 80, 80);
+ return SK_ColorYELLOW;
+}
+SkColor DebugColors::HUDTitleColor() {
+ return SkColorSetARGB(255, 232, 232, 232);
}
SkColor DebugColors::PlatformLayerTreeTextColor() { return SK_ColorRED; }
-SkColor DebugColors::FPSDisplayTextAndGraphColor() { return SK_ColorRED; }
+SkColor DebugColors::FPSDisplayTextAndGraphColor() {
+ return SK_ColorGREEN;
+}
SkColor DebugColors::MemoryDisplayTextColor() {
- return SkColorSetARGB(255, 220, 220, 220);
+ return SK_ColorCYAN;
}
// Paint time display in green (similar to paint times in the WebInspector)
« no previous file with comments | « cc/debug/debug_colors.h ('k') | cc/layers/heads_up_display_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698