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

Unified Diff: ash/accelerators/debug_commands.cc

Issue 2095193002: clang-format all of //ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « ash/accelerators/accelerator_table_unittest.cc ('k') | ash/accelerators/exit_warning_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/accelerators/debug_commands.cc
diff --git a/ash/accelerators/debug_commands.cc b/ash/accelerators/debug_commands.cc
index 81000e952a1ba0286a12aed8504cec1b732d7c50..909d7c5b18efc4db17bc70d22f67cacc603a8d50 100644
--- a/ash/accelerators/debug_commands.cc
+++ b/ash/accelerators/debug_commands.cc
@@ -67,8 +67,7 @@ void PrintWindowHierarchy(aura::Window* window,
<< " type=" << window->type()
<< (wm::IsActiveWindow(window) ? " [active] " : " ")
<< (window->IsVisible() ? " visible " : " ")
- << window->bounds().ToString()
- << '\n';
+ << window->bounds().ToString() << '\n';
for (size_t i = 0; i < window->children().size(); ++i)
PrintWindowHierarchy(window->children()[i], indent + 3, out);
@@ -108,8 +107,9 @@ void HandleToggleDesktopBackgroundMode() {
Shell::GetInstance()->desktop_background_controller();
switch (++index % 4) {
case 0:
- ash::Shell::GetInstance()->user_wallpaper_delegate()->
- InitializeWallpaper();
+ ash::Shell::GetInstance()
+ ->user_wallpaper_delegate()
+ ->InitializeWallpaper();
break;
case 1:
desktop_background_controller->SetWallpaperImage(
« no previous file with comments | « ash/accelerators/accelerator_table_unittest.cc ('k') | ash/accelerators/exit_warning_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698