Index: cc/layers/heads_up_display_layer_impl.cc |
diff --git a/cc/layers/heads_up_display_layer_impl.cc b/cc/layers/heads_up_display_layer_impl.cc |
index 069213940204d31311cd6ff010ee781e14a7b813..bb6857103878ff102e646f40b74d8e4640bc3c34 100644 |
--- a/cc/layers/heads_up_display_layer_impl.cc |
+++ b/cc/layers/heads_up_display_layer_impl.cc |
@@ -385,6 +385,8 @@ SkRect HeadsUpDisplayLayerImpl::DrawFPSDisplay( |
const std::string min_max_text = |
base::StringPrintf("%.0f-%.0f", fps_graph_.min, fps_graph_.max); |
+ VLOG(1) << value_text; |
+ |
paint.setColor(DebugColors::FPSDisplayTextAndGraphColor()); |
DrawText(canvas, |
&paint, |
@@ -565,13 +567,8 @@ SkRect HeadsUpDisplayLayerImpl::DrawPaintTimeDisplay( |
"%.1f-%.1f", paint_time_graph_.min, paint_time_graph_.max); |
paint.setColor(DebugColors::PaintTimeDisplayTextAndGraphColor()); |
- DrawText(canvas, |
- &paint, |
- "Page paint time (ms)", |
- SkPaint::kLeft_Align, |
- kFontHeight, |
- text_bounds.left(), |
- text_bounds.bottom()); |
+ DrawText(canvas, &paint, "Compositor frame time (ms)", SkPaint::kLeft_Align, |
+ kFontHeight, text_bounds.left(), text_bounds.bottom()); |
DrawText(canvas, |
&paint, |
value_text, |