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

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

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: fix bad merge 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.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_types.cc b/chrome/browser/ui/autofill/autofill_dialog_types.cc
index 23cf0ba278d454d391ca6a9de372bd44890b99f8..ce2aa5bbd6870f261f09e7c330adaf01bd15de8e 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_types.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_types.cc
@@ -69,11 +69,13 @@ bool DialogNotification::HasCheckbox() const {
}
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)
: text(text),
+ text_style(text_style),
Dan Beam 2013/04/16 03:01:14 btw, is there a less clunky way to do this without
Evan Stade 2013/04/16 19:06:20 don't understand how this is clunky.
icon(icon),
extra_text(extra_text),
extra_icon(extra_icon),

Powered by Google App Engine
This is Rietveld 408576698