Merge views::CustomButton into views::Button.

https://chromium-review.googlesource.com/617407
This commit is contained in:
Aleksei Kuzmin 2017-11-27 14:02:37 +01:00 committed by Cheng Zhao
parent 6f00e4a014
commit 9fa08fdbc0

View file

@ -60,7 +60,7 @@ std::unique_ptr<views::InkDropRipple> SubmenuButton::CreateInkDropRipple()
std::unique_ptr<views::InkDrop> SubmenuButton::CreateInkDrop() {
std::unique_ptr<views::InkDropImpl> ink_drop =
CustomButton::CreateDefaultInkDropImpl();
views::Button::CreateDefaultInkDropImpl();
ink_drop->SetShowHighlightOnHover(false);
return std::move(ink_drop);
}