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 bd1b73c595a1708545c691085c73fc6ec6433165..bdd4368182e17e49b0ae37398f4af3c4496fdd63 100644 |
--- a/chrome/browser/ui/autofill/autofill_dialog_types.h |
+++ b/chrome/browser/ui/autofill/autofill_dialog_types.h |
@@ -12,6 +12,7 @@ |
#include "base/string16.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" |
class AutofillField; |
@@ -124,12 +125,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; |