| Index: chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc
|
| index 9d1ff7d07306d10813cb6f2165dd99d895bf867c..eb02b9e0e9ee65488910bd49cad2f804b92e545e 100644
|
| --- a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc
|
| @@ -143,14 +143,14 @@ void IconLabelBubbleView::OnNativeThemeChanged(
|
| }
|
|
|
| void IconLabelBubbleView::AddInkDropLayer(ui::Layer* ink_drop_layer) {
|
| - image()->SetPaintToLayer(true);
|
| + image()->SetPaintToLayer();
|
| image()->layer()->SetFillsBoundsOpaquely(false);
|
| InkDropHostView::AddInkDropLayer(ink_drop_layer);
|
| }
|
|
|
| void IconLabelBubbleView::RemoveInkDropLayer(ui::Layer* ink_drop_layer) {
|
| InkDropHostView::RemoveInkDropLayer(ink_drop_layer);
|
| - image()->SetPaintToLayer(false);
|
| + image()->DestroyLayer();
|
| }
|
|
|
| std::unique_ptr<views::InkDropHighlight>
|
|
|