Index: ash/common/system/chromeos/network/network_state_list_detailed_view.cc |
diff --git a/ash/common/system/chromeos/network/network_state_list_detailed_view.cc b/ash/common/system/chromeos/network/network_state_list_detailed_view.cc |
index a3e43b69e1d8c188bd29b6eeb227d19706c48ca8..3ca30f68a8eb8bd8d88596b1bb447bccf6a00acd 100644 |
--- a/ash/common/system/chromeos/network/network_state_list_detailed_view.cc |
+++ b/ash/common/system/chromeos/network/network_state_list_detailed_view.cc |
@@ -474,13 +474,15 @@ void NetworkStateListDetailedView::CreateExtraTitleRowButtons() { |
if (login_ == LoginStatus::LOCKED) |
return; |
- info_button_md_ = new SystemMenuButton(this, kSystemMenuInfoIcon, |
- IDS_ASH_STATUS_TRAY_NETWORK_INFO); |
+ info_button_md_ = new SystemMenuButton( |
+ this, SystemMenuButton::InkDropStyle::SQUARE, kSystemMenuInfoIcon, |
+ IDS_ASH_STATUS_TRAY_NETWORK_INFO); |
title_row()->AddViewToTitleRow(info_button_md_); |
if (login_ != LoginStatus::NOT_LOGGED_IN) { |
settings_button_md_ = new SystemMenuButton( |
- this, kSystemMenuSettingsIcon, IDS_ASH_STATUS_TRAY_NETWORK_SETTINGS); |
+ this, SystemMenuButton::InkDropStyle::SQUARE, kSystemMenuSettingsIcon, |
+ IDS_ASH_STATUS_TRAY_NETWORK_SETTINGS); |
// Allow the user to access settings only if user is logged in |
// and showing settings is allowed. There are situations (supervised user |
@@ -491,9 +493,9 @@ void NetworkStateListDetailedView::CreateExtraTitleRowButtons() { |
title_row()->AddViewToTitleRow(settings_button_md_); |
} else { |
- proxy_settings_button_md_ = |
- new SystemMenuButton(this, kSystemMenuSettingsIcon, |
- IDS_ASH_STATUS_TRAY_NETWORK_PROXY_SETTINGS); |
+ proxy_settings_button_md_ = new SystemMenuButton( |
+ this, SystemMenuButton::InkDropStyle::SQUARE, kSystemMenuSettingsIcon, |
+ IDS_ASH_STATUS_TRAY_NETWORK_PROXY_SETTINGS); |
title_row()->AddViewToTitleRow(proxy_settings_button_md_); |
} |