| Index: ash/common/system/chromeos/settings/tray_settings.cc
|
| diff --git a/ash/common/system/chromeos/settings/tray_settings.cc b/ash/common/system/chromeos/settings/tray_settings.cc
|
| index 5f7f17ba3b788e5fd53a0d1168e5ea783c21a6f1..033b028ac1a1a15fc400629c81932341c7c49d3a 100644
|
| --- a/ash/common/system/chromeos/settings/tray_settings.cc
|
| +++ b/ash/common/system/chromeos/settings/tray_settings.cc
|
| @@ -13,6 +13,7 @@
|
| #include "ash/common/system/tray/system_tray_controller.h"
|
| #include "ash/common/system/tray/system_tray_delegate.h"
|
| #include "ash/common/system/tray/tray_constants.h"
|
| +#include "ash/common/system/tray/tray_popup_utils.h"
|
| #include "ash/common/wm_shell.h"
|
| #include "base/logging.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| @@ -61,7 +62,8 @@ class SettingsDefaultView : public ActionableView,
|
| AddChildView(icon);
|
|
|
| base::string16 text = rb.GetLocalizedString(IDS_ASH_STATUS_TRAY_SETTINGS);
|
| - label_ = new views::Label(text);
|
| + label_ = TrayPopupUtils::CreateDefaultLabel();
|
| + label_->SetText(text);
|
| AddChildView(label_);
|
| SetAccessibleName(text);
|
|
|
|
|