| Index: ash/common/system/tray/tray_popup_utils.cc
|
| diff --git a/ash/common/system/tray/tray_popup_utils.cc b/ash/common/system/tray/tray_popup_utils.cc
|
| index b5e3deb294380a84caf165b59617c1bbc0a1994d..f1ccb9f7842f38f0ec00e4d4f2b8efcce6e27848 100644
|
| --- a/ash/common/system/tray/tray_popup_utils.cc
|
| +++ b/ash/common/system/tray/tray_popup_utils.cc
|
| @@ -341,9 +341,13 @@ std::unique_ptr<views::InkDropRipple> TrayPopupUtils::CreateInkDropRipple(
|
| }
|
| // Intentional fall through.
|
| case TrayPopupInkDropStyle::INSET_BOUNDS:
|
| - case TrayPopupInkDropStyle::FILL_BOUNDS:
|
| + case TrayPopupInkDropStyle::FILL_BOUNDS: {
|
| + const gfx::Insets insets =
|
| + TrayPopupUtils::GetInkDropInsets(ink_drop_style);
|
| return base::MakeUnique<views::FloodFillInkDropRipple>(
|
| - bounds, center_point, color, kTrayPopupInkDropRippleOpacity);
|
| + host->size(), insets, center_point, color,
|
| + kTrayPopupInkDropRippleOpacity);
|
| + }
|
| }
|
| // Required for some compilers.
|
| NOTREACHED();
|
|
|