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

Unified Diff: ash/accelerators/accelerator_controller.cc

Issue 10444014: ash: Improved window maximize/restore animations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix lock screen, app windows Created 8 years, 6 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 | « no previous file | ash/wm/base_layout_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/accelerators/accelerator_controller.cc
diff --git a/ash/accelerators/accelerator_controller.cc b/ash/accelerators/accelerator_controller.cc
index c4f21ba47fdff91c1f5a70cf8491f24339879d78..f1fb427278524a4b582115695c5eae2f350c81d5 100644
--- a/ash/accelerators/accelerator_controller.cc
+++ b/ash/accelerators/accelerator_controller.cc
@@ -178,21 +178,21 @@ bool HandlePrintLayerHierarchy() {
void PrintWindowHierarchy(aura::Window* window, int indent) {
std::string indent_str(indent, ' ');
- VLOG(1) << indent_str << window->name() << " type " << window->type()
+ DLOG(INFO) << 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() {
- VLOG(1) << "Window hierarchy:";
+ DLOG(INFO) << "Window hierarchy:";
aura::Window* container = ash::Shell::GetInstance()->GetContainer(
ash::internal::kShellWindowId_DefaultContainer);
PrintWindowHierarchy(container, 0);
return true;
}
-#endif
+#endif // !defined(NDEBUG)
} // namespace
« no previous file with comments | « no previous file | ash/wm/base_layout_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698