Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2804)

Unified Diff: chrome/browser/ui/cocoa/autofill/card_unmask_prompt_view_bridge.mm

Issue 2733823003: Move final vector icons out of ui/gfx/vector_icons/ and remove the (Closed)
Patch Set: fix deps Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/autofill/card_unmask_prompt_view_bridge.mm
diff --git a/chrome/browser/ui/cocoa/autofill/card_unmask_prompt_view_bridge.mm b/chrome/browser/ui/cocoa/autofill/card_unmask_prompt_view_bridge.mm
index 5b3ad3cbd3906b1a6e9af5a102472cb0cd9d770b..b35f4e075fcc8635a3c1ccf7a3195819ded8f5c8 100644
--- a/chrome/browser/ui/cocoa/autofill/card_unmask_prompt_view_bridge.mm
+++ b/chrome/browser/ui/cocoa/autofill/card_unmask_prompt_view_bridge.mm
@@ -33,8 +33,8 @@
#include "ui/gfx/color_palette.h"
#include "ui/gfx/image/image_skia_util_mac.h"
#include "ui/gfx/paint_vector_icon.h"
-#include "ui/gfx/vector_icons_public.h"
#include "ui/native_theme/native_theme.h"
+#include "ui/vector_icons/vector_icons.h"
namespace {
@@ -502,10 +502,9 @@ void CardUnmaskPromptViewBridge::PerformClose() {
initWithArrowLocation:info_bubble::kTopTrailing]);
[storageTooltip_ setMaxTooltipWidth:2 * autofill::kFieldWidth +
autofill::kHorizontalFieldPadding];
- [storageTooltip_
- setImage:gfx::NSImageFromImageSkia(gfx::CreateVectorIcon(
- gfx::VectorIconId::INFO_OUTLINE, autofill::kInfoIconSize,
- gfx::kChromeIconGrey))];
+ [storageTooltip_ setImage:gfx::NSImageFromImageSkia(gfx::CreateVectorIcon(
+ ui::kInfoOutlineIcon, autofill::kInfoIconSize,
+ gfx::kChromeIconGrey))];
[storageTooltip_
setMessage:base::SysUTF16ToNSString(l10n_util::GetStringUTF16(
IDS_AUTOFILL_CARD_UNMASK_PROMPT_STORAGE_TOOLTIP))];
« no previous file with comments | « chrome/browser/ui/chrome_select_file_policy.cc ('k') | chrome/browser/ui/cocoa/browser_window_controller_browsertest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698