| Index: chrome/browser/ui/views/download/download_shelf_view.cc
|
| diff --git a/chrome/browser/ui/views/download/download_shelf_view.cc b/chrome/browser/ui/views/download/download_shelf_view.cc
|
| index dbedfe58ef22a758322a29cf5991609d5797b4ae..1e119e9d3959fbaafbb2a72af0634e83a2a4695f 100644
|
| --- a/chrome/browser/ui/views/download/download_shelf_view.cc
|
| +++ b/chrome/browser/ui/views/download/download_shelf_view.cc
|
| @@ -30,8 +30,8 @@
|
| #include "ui/base/theme_provider.h"
|
| #include "ui/gfx/animation/slide_animation.h"
|
| #include "ui/gfx/canvas.h"
|
| -#include "ui/gfx/vector_icons_public.h"
|
| #include "ui/resources/grit/ui_resources.h"
|
| +#include "ui/vector_icons/vector_icons.h"
|
| #include "ui/views/background.h"
|
| #include "ui/views/border.h"
|
| #include "ui/views/controls/button/md_text_button.h"
|
| @@ -113,7 +113,7 @@ DownloadShelfView::DownloadShelfView(Browser* browser, BrowserView* parent)
|
| AddChildView(show_all_view_);
|
|
|
| views::VectorIconButton* close_button = new views::VectorIconButton(this);
|
| - close_button->SetIcon(gfx::VectorIconId::BAR_CLOSE);
|
| + close_button->SetIcon(ui::kCloseIcon);
|
| close_button_ = close_button;
|
| close_button_->SetAccessibleName(
|
| l10n_util::GetStringUTF16(IDS_ACCNAME_CLOSE));
|
|
|