| Index: chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
|
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
|
| index 27668abe0c6c540ba8497bc00ff22451b3f99de2..b1a2502c0cee4d59a337a5157558b1116e12b79c 100644
|
| --- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
|
| +++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
|
| @@ -86,6 +86,7 @@
|
| #include "ui/base/models/combobox_model.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| #include "ui/gfx/canvas.h"
|
| +#include "ui/gfx/geometry/vector2d.h"
|
| #include "ui/gfx/image/image_skia_operations.h"
|
| #include "ui/gfx/skia_util.h"
|
|
|
| @@ -1453,7 +1454,7 @@ gfx::Image AutofillDialogControllerImpl::GetGeneratedCardImage(
|
| gfx::Font font(l10n_util::GetStringUTF8(IDS_FIXED_FONT_FAMILY), 18);
|
| gfx::FontList font_list(font);
|
| gfx::ShadowValues shadows;
|
| - shadows.push_back(gfx::ShadowValue(gfx::Point(0, 1), 1.0, SK_ColorBLACK));
|
| + shadows.push_back(gfx::ShadowValue(gfx::Vector2d(0, 1), 1.0, SK_ColorBLACK));
|
| canvas.DrawStringRectWithShadows(
|
| card_number,
|
| font_list,
|
|
|