| Index: chrome/browser/ui/views/download/download_item_view_md.cc
|
| diff --git a/chrome/browser/ui/views/download/download_item_view_md.cc b/chrome/browser/ui/views/download/download_item_view_md.cc
|
| index f2c6bbf5194f7355d9e0923f3ef0752f4b00fa27..980174fcaa2d60f1940215390dc16138d8eb0e99 100644
|
| --- a/chrome/browser/ui/views/download/download_item_view_md.cc
|
| +++ b/chrome/browser/ui/views/download/download_item_view_md.cc
|
| @@ -58,7 +58,7 @@
|
| #include "ui/gfx/text_elider.h"
|
| #include "ui/gfx/text_utils.h"
|
| #include "ui/gfx/vector_icons_public.h"
|
| -#include "ui/views/animation/flood_fill_ink_drop_animation.h"
|
| +#include "ui/views/animation/flood_fill_ink_drop_ripple.h"
|
| #include "ui/views/animation/ink_drop_delegate.h"
|
| #include "ui/views/animation/ink_drop_hover.h"
|
| #include "ui/views/border.h"
|
| @@ -473,9 +473,9 @@ void DownloadItemViewMd::AddInkDropLayer(ui::Layer* ink_drop_layer) {
|
| layer()->SetMasksToBounds(true);
|
| }
|
|
|
| -std::unique_ptr<views::InkDropAnimation>
|
| -DownloadItemViewMd::CreateInkDropAnimation() const {
|
| - return base::WrapUnique(new views::FloodFillInkDropAnimation(
|
| +std::unique_ptr<views::InkDropRipple> DownloadItemViewMd::CreateInkDropRipple()
|
| + const {
|
| + return base::WrapUnique(new views::FloodFillInkDropRipple(
|
| GetLocalBounds(), ink_drop_delegate_.last_ink_drop_location(),
|
| color_utils::DeriveDefaultIconColor(GetTextColor())));
|
| }
|
|
|