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

Unified Diff: ash/common/system/tray/tray_empty.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/common/system/tray/tray_details_view_unittest.cc ('k') | ash/common/system/tray/tray_event_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/tray/tray_empty.cc
diff --git a/ash/common/system/tray/tray_empty.cc b/ash/common/system/tray/tray_empty.cc
index 199bfcf220b5d095c3fa56749b07974dd2e53504..05261a0f9be90db26b2aba390d9563d675eed2b2 100644
--- a/ash/common/system/tray/tray_empty.cc
+++ b/ash/common/system/tray/tray_empty.cc
@@ -21,14 +21,11 @@ class EmptyBackground : public views::Background {
DISALLOW_COPY_AND_ASSIGN(EmptyBackground);
};
-
}
namespace ash {
-TrayEmpty::TrayEmpty(SystemTray* system_tray)
- : SystemTrayItem(system_tray) {
-}
+TrayEmpty::TrayEmpty(SystemTray* system_tray) : SystemTrayItem(system_tray) {}
TrayEmpty::~TrayEmpty() {}
@@ -43,8 +40,8 @@ views::View* TrayEmpty::CreateDefaultView(LoginStatus status) {
views::View* view = new views::View;
view->set_background(new EmptyBackground());
view->SetBorder(views::Border::CreateEmptyBorder(10, 0, 0, 0));
- view->SetLayoutManager(new views::BoxLayout(views::BoxLayout::kVertical,
- 0, 0, 0));
+ view->SetLayoutManager(
+ new views::BoxLayout(views::BoxLayout::kVertical, 0, 0, 0));
view->SetPaintToLayer(true);
view->layer()->SetFillsBoundsOpaquely(false);
return view;
« no previous file with comments | « ash/common/system/tray/tray_details_view_unittest.cc ('k') | ash/common/system/tray/tray_event_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698