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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_types.h

Issue 14129005: Remove "Use billing for shipping" checkbox in favor of item in suggestions menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 7 years, 8 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/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;

Powered by Google App Engine
This is Rietveld 408576698