| Index: ash/common/system/chromeos/network/tray_sms.cc
|
| diff --git a/ash/common/system/chromeos/network/tray_sms.cc b/ash/common/system/chromeos/network/tray_sms.cc
|
| index 5597c7503c8724125ab4d42197ca0f75ee85b093..05d3b5b08511fe97d543ecec63a0e28c1e303296 100644
|
| --- a/ash/common/system/chromeos/network/tray_sms.cc
|
| +++ b/ash/common/system/chromeos/network/tray_sms.cc
|
| @@ -15,6 +15,7 @@
|
| #include "ash/common/system/tray/tray_item_view.h"
|
| #include "ash/common/system/tray/tray_notification_view.h"
|
| #include "ash/common/wm_shell.h"
|
| +#include "ash/resources/vector_icons/vector_icons.h"
|
| #include "base/strings/string_number_conversions.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "chromeos/network/network_event_log.h"
|
| @@ -24,7 +25,6 @@
|
| #include "ui/base/l10n/l10n_util.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| #include "ui/gfx/paint_vector_icon.h"
|
| -#include "ui/gfx/vector_icons_public.h"
|
| #include "ui/views/bubble/tray_bubble_view.h"
|
| #include "ui/views/controls/image_view.h"
|
| #include "ui/views/controls/label.h"
|
| @@ -61,8 +61,8 @@ class TraySms::SmsDefaultView : public TrayItemMore {
|
| public:
|
| explicit SmsDefaultView(TraySms* owner) : TrayItemMore(owner, true) {
|
| if (MaterialDesignController::UseMaterialDesignSystemIcons()) {
|
| - SetImage(gfx::CreateVectorIcon(gfx::VectorIconId::SYSTEM_MENU_SMS,
|
| - kMenuIconSize, kMenuIconColor));
|
| + SetImage(gfx::CreateVectorIcon(kSystemMenuSmsIcon, kMenuIconSize,
|
| + kMenuIconColor));
|
| } else {
|
| SetImage(*ui::ResourceBundle::GetSharedInstance().GetImageSkiaNamed(
|
| IDR_AURA_UBER_TRAY_SMS));
|
|
|