Index: ash/common/system/tray/system_menu_button.cc |
diff --git a/ash/common/system/tray/system_menu_button.cc b/ash/common/system/tray/system_menu_button.cc |
index 9955698c478fd3bf0711955916c2aaf0fd4eca72..3ac437d6e40a3cf517917011f5d41a760a5b0095 100644 |
--- a/ash/common/system/tray/system_menu_button.cc |
+++ b/ash/common/system/tray/system_menu_button.cc |
@@ -38,7 +38,7 @@ SystemMenuButton::SystemMenuButton(views::ButtonListener* listener, |
SetInkDropMode(InkDropMode::ON_NO_GESTURE_HANDLER); |
set_has_ink_drop_action_on_click(true); |
- set_ink_drop_base_color(kMenuIconColor); |
+ set_ink_drop_base_color(SK_ColorBLACK); |
} |
SystemMenuButton::~SystemMenuButton() {} |
@@ -52,10 +52,7 @@ std::unique_ptr<views::InkDropRipple> SystemMenuButton::CreateInkDropRipple() |
std::unique_ptr<views::InkDropHighlight> |
SystemMenuButton::CreateInkDropHighlight() const { |
- gfx::Size size = GetLocalBounds().size(); |
- return base::MakeUnique<views::InkDropHighlight>( |
- size, kInkDropSmallCornerRadius, |
- gfx::RectF(gfx::SizeF(size)).CenterPoint(), kMenuIconColor); |
+ return nullptr; |
} |
bool SystemMenuButton::ShouldShowInkDropForFocus() const { |