| Index: chrome/browser/ui/autofill/autofill_dialog_types.h
|
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_types.h b/chrome/browser/ui/autofill/autofill_dialog_types.h
|
| index 15a770e09b6ddc2c76eec2f9337237d827603351..5917089a360d7e391d94363f3621d7d2a888661a 100644
|
| --- a/chrome/browser/ui/autofill/autofill_dialog_types.h
|
| +++ b/chrome/browser/ui/autofill/autofill_dialog_types.h
|
| @@ -13,6 +13,7 @@
|
| #include "components/autofill/browser/autofill_metrics.h"
|
| #include "components/autofill/browser/field_types.h"
|
| #include "third_party/skia/include/core/SkColor.h"
|
| +#include "ui/gfx/font.h"
|
| #include "ui/gfx/image/image.h"
|
|
|
| namespace autofill {
|
| @@ -132,12 +133,14 @@ enum DialogSignedInState {
|
|
|
| struct SuggestionState {
|
| SuggestionState(const string16& text,
|
| + gfx::Font::FontStyle text_style,
|
| const gfx::Image& icon,
|
| const string16& extra_text,
|
| const gfx::Image& extra_icon,
|
| bool editable);
|
| ~SuggestionState();
|
| string16 text;
|
| + gfx::Font::FontStyle text_style;
|
| gfx::Image icon;
|
| string16 extra_text;
|
| gfx::Image extra_icon;
|
|
|