| Index: chrome/browser/ui/views/autofill/autofill_dialog_views.h
|
| diff --git a/chrome/browser/ui/views/autofill/autofill_dialog_views.h b/chrome/browser/ui/views/autofill/autofill_dialog_views.h
|
| index 331ddc9820a37314326a6dbbcfe568c8768b8b29..96ce4daae08144f2251e028e4c7fc692fab1407b 100644
|
| --- a/chrome/browser/ui/views/autofill/autofill_dialog_views.h
|
| +++ b/chrome/browser/ui/views/autofill/autofill_dialog_views.h
|
| @@ -78,7 +78,6 @@ class AutofillDialogViews : public AutofillDialogView,
|
| virtual void GetUserInput(DialogSection section,
|
| DetailOutputMap* output) OVERRIDE;
|
| virtual string16 GetCvc() OVERRIDE;
|
| - virtual bool UseBillingForShipping() OVERRIDE;
|
| virtual bool SaveDetailsLocally() OVERRIDE;
|
| virtual const content::NavigationController* ShowSignIn() OVERRIDE;
|
| virtual void HideSignIn() OVERRIDE;
|
| @@ -300,7 +299,7 @@ class AutofillDialogViews : public AutofillDialogView,
|
| void SetEditable(bool editable);
|
|
|
| // Sets the display text of the suggestion.
|
| - void SetSuggestionText(const string16& text);
|
| + void SetSuggestionText(const string16& text, gfx::Font::FontStyle style);
|
|
|
| // Sets the icon which should be displayed ahead of the text.
|
| void SetSuggestionIcon(const gfx::Image& image);
|
| @@ -445,10 +444,6 @@ class AutofillDialogViews : public AutofillDialogView,
|
| // Somewhere to show notification messages about errors, warnings, or promos.
|
| NotificationArea* notification_area_;
|
|
|
| - // The checkbox that controls whether to use the billing details for shipping
|
| - // as well.
|
| - views::Checkbox* use_billing_for_shipping_;
|
| -
|
| // Runs the suggestion menu (triggered by each section's |suggested_button|.
|
| scoped_ptr<views::MenuRunner> menu_runner_;
|
|
|
|
|