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

Unified Diff: ash/common/system/tray/fixed_sized_scroll_view.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/fixed_sized_image_view.cc ('k') | ash/common/system/tray/hover_highlight_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/tray/fixed_sized_scroll_view.cc
diff --git a/ash/common/system/tray/fixed_sized_scroll_view.cc b/ash/common/system/tray/fixed_sized_scroll_view.cc
index dfa53f12887f2546f7b7d62025167ef86097e900..f63f84bd008833b8038d6093a63a848e19da1c2c 100644
--- a/ash/common/system/tray/fixed_sized_scroll_view.cc
+++ b/ash/common/system/tray/fixed_sized_scroll_view.cc
@@ -10,8 +10,7 @@ FixedSizedScrollView::FixedSizedScrollView() {
set_notify_enter_exit_on_child(true);
}
-FixedSizedScrollView::~FixedSizedScrollView() {
-}
+FixedSizedScrollView::~FixedSizedScrollView() {}
void FixedSizedScrollView::SetContentsView(views::View* view) {
SetContents(view);
@@ -26,8 +25,8 @@ void FixedSizedScrollView::SetFixedSize(const gfx::Size& size) {
}
gfx::Size FixedSizedScrollView::GetPreferredSize() const {
- gfx::Size size = fixed_size_.IsEmpty() ?
- contents()->GetPreferredSize() : fixed_size_;
+ gfx::Size size =
+ fixed_size_.IsEmpty() ? contents()->GetPreferredSize() : fixed_size_;
gfx::Insets insets = GetInsets();
size.Enlarge(insets.width(), insets.height());
return size;
« no previous file with comments | « ash/common/system/tray/fixed_sized_image_view.cc ('k') | ash/common/system/tray/hover_highlight_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698