| Index: ash/accelerators/accelerator_controller.cc
|
| ===================================================================
|
| --- ash/accelerators/accelerator_controller.cc (revision 139956)
|
| +++ ash/accelerators/accelerator_controller.cc (working copy)
|
| @@ -172,21 +172,21 @@
|
|
|
| void PrintWindowHierarchy(aura::Window* window, int indent) {
|
| std::string indent_str(indent, ' ');
|
| - DLOG(INFO) << indent_str << window->name() << " type " << window->type()
|
| + VLOG(1) << indent_str << window->name() << " type " << window->type()
|
| << (ash::wm::IsActiveWindow(window) ? "active" : "");
|
| for (size_t i = 0; i < window->children().size(); ++i)
|
| PrintWindowHierarchy(window->children()[i], indent + 3);
|
| }
|
|
|
| bool HandlePrintWindowHierarchy() {
|
| - DLOG(INFO) << "Window hierarchy:";
|
| + VLOG(1) << "Window hierarchy:";
|
| aura::Window* container = ash::Shell::GetInstance()->GetContainer(
|
| ash::internal::kShellWindowId_DefaultContainer);
|
| PrintWindowHierarchy(container, 0);
|
| return true;
|
| }
|
|
|
| -#endif // !defined(NDEBUG)
|
| +#endif
|
|
|
| } // namespace
|
|
|
|
|