Chromium Code Reviews| 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; |
|
Dan Beam
2013/04/16 03:01:14
nit: should these all be const? maybe it doesn't m
Evan Stade
2013/04/16 19:06:20
these could be const, because at the moment nothin
|
| gfx::Image icon; |
| string16 extra_text; |
| gfx::Image extra_icon; |