| Index: ui/views/debug_utils.cc
|
| diff --git a/ui/views/debug_utils.cc b/ui/views/debug_utils.cc
|
| index b451c2da50ee621da8f2a0c5c7c2be3ca8751cf7..10becc065c480c4cab17aa734ffceaf0051ae1ab 100644
|
| --- a/ui/views/debug_utils.cc
|
| +++ b/ui/views/debug_utils.cc
|
| @@ -20,10 +20,12 @@ void PrintViewHierarchyImp(const View* view,
|
| *out << view->GetClassName();
|
| *out << ' ';
|
| *out << view->id();
|
| + *out << '/';
|
| + *out << view->GetGroup();
|
| *out << ' ';
|
| - *out << view->x() << "," << view->y() << ",";
|
| - *out << view->bounds().right() << "," << view->bounds().bottom();
|
| - *out << ' ';
|
| + *out << view->x() << "," << view->y() << " (";
|
| + *out << view->bounds().width() << "x" << view->bounds().height();
|
| + *out << ") ";
|
| *out << view;
|
| *out << '\n';
|
|
|
|
|