Index: ui/views/view.cc |
diff --git a/ui/views/view.cc b/ui/views/view.cc |
index 88353236117b531405157cf45733b7eeb6f99319..b3717cdfaeb3e4537195d455e618202bfe5afc73 100644 |
--- a/ui/views/view.cc |
+++ b/ui/views/view.cc |
@@ -1453,9 +1453,11 @@ void View::NativeViewHierarchyChanged() { |
void View::PaintChildren(gfx::Canvas* canvas, const CullSet& cull_set) { |
TRACE_EVENT1("views", "View::PaintChildren", "class", GetClassName()); |
- for (int i = 0, count = child_count(); i < count; ++i) |
+ for (int i = 0, count = child_count(); i < count; ++i) { |
+ DLOG(INFO) << i << " ==> Paint: " << child_at(i)->GetClassName() << " layer=" << child_at(i)->layer() << " children=" << child_at(i)->child_count(); |
if (!child_at(i)->layer()) |
child_at(i)->Paint(canvas, cull_set); |
+ } |
} |
void View::OnPaint(gfx::Canvas* canvas) { |