Index: chrome/browser/ui/views/download/download_item_view.cc |
diff --git a/chrome/browser/ui/views/download/download_item_view.cc b/chrome/browser/ui/views/download/download_item_view.cc |
index fa2eff196f3d24b0b0a1132d49fcfb07c4d7476d..77965e3f57245afb1e89dc260bdfb22ebc848814 100644 |
--- a/chrome/browser/ui/views/download/download_item_view.cc |
+++ b/chrome/browser/ui/views/download/download_item_view.cc |
@@ -57,7 +57,7 @@ |
#include "ui/gfx/paint_vector_icon.h" |
#include "ui/gfx/text_elider.h" |
#include "ui/gfx/text_utils.h" |
-#include "ui/gfx/vector_icons_public.h" |
+#include "ui/vector_icons/vector_icons.h" |
#include "ui/views/animation/flood_fill_ink_drop_ripple.h" |
#include "ui/views/animation/ink_drop_highlight.h" |
#include "ui/views/animation/ink_drop_impl.h" |
@@ -988,8 +988,8 @@ gfx::ImageSkia DownloadItemView::GetWarningIcon() { |
case content::DOWNLOAD_DANGER_TYPE_DANGEROUS_HOST: |
case content::DOWNLOAD_DANGER_TYPE_POTENTIALLY_UNWANTED: |
case content::DOWNLOAD_DANGER_TYPE_DANGEROUS_FILE: |
- return gfx::CreateVectorIcon(gfx::VectorIconId::WARNING, |
- kWarningIconSize, gfx::kGoogleRed700); |
+ return gfx::CreateVectorIcon(ui::kWarningIcon, kWarningIconSize, |
+ gfx::kGoogleRed700); |
case content::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS: |
case content::DOWNLOAD_DANGER_TYPE_MAYBE_DANGEROUS_CONTENT: |