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

Unified Diff: ash/common/system/tray/tray_background_view.cc

Issue 2209443006: Show small notification icons in notification tray (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 4 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
Index: ash/common/system/tray/tray_background_view.cc
diff --git a/ash/common/system/tray/tray_background_view.cc b/ash/common/system/tray/tray_background_view.cc
index 3e26c5069993d2872ef9ae0d0f4602002b223bb3..3c9e435a2ad8261ed58e4c47b1d5bcade03bd346 100644
--- a/ash/common/system/tray/tray_background_view.cc
+++ b/ash/common/system/tray/tray_background_view.cc
@@ -186,6 +186,10 @@ void TrayBackgroundView::TrayContainer::ChildPreferredSizeChanged(
PreferredSizeChanged();
}
+gfx::Insets TrayBackgroundView::TrayContainer::GetInsets() const {
+ return views::View::GetInsets() + insets_;
xiyuan 2016/08/05 16:18:59 Can we use |insets_| and create a proper empty bor
yoshiki 2016/08/09 16:43:04 Done.
+}
+
void TrayBackgroundView::TrayContainer::ChildVisibilityChanged(View* child) {
PreferredSizeChanged();
}

Powered by Google App Engine
This is Rietveld 408576698