| Index: chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
|
| ===================================================================
|
| --- chrome/browser/ui/autofill/autofill_dialog_controller_impl.h (revision 180113)
|
| +++ chrome/browser/ui/autofill/autofill_dialog_controller_impl.h (working copy)
|
| @@ -69,6 +69,7 @@
|
| virtual string16 SaveLocallyText() const OVERRIDE;
|
| virtual string16 CancelSignInText() const OVERRIDE;
|
| virtual string16 ProgressBarText() const OVERRIDE;
|
| + virtual DialogSignedInState SignedInState() const OVERRIDE;
|
| virtual const DetailInputs& RequestedFieldsForSection(DialogSection section)
|
| const OVERRIDE;
|
| virtual ui::ComboboxModel* ComboboxModelForAutofillType(
|
| @@ -150,6 +151,9 @@
|
| // to the requesting site.
|
| bool TransmissionWillBeSecure() const;
|
|
|
| + // Convenience method to tell whether we need to address |action|.
|
| + bool HasRequiredAction(wallet::RequiredAction action) const;
|
| +
|
| // Initializes |suggested_email_| et al.
|
| void GenerateSuggestionsModels();
|
|
|
| @@ -197,10 +201,6 @@
|
| // Like RequestedFieldsForSection, but returns a pointer.
|
| DetailInputs* MutableRequestedFieldsForSection(DialogSection section);
|
|
|
| - // Turns a required action into a notification.
|
| - DialogNotification RequiredActionNotification(
|
| - const std::vector<wallet::RequiredAction>& required_actions) const;
|
| -
|
| // Hides |popup_controller_|'s popup view, if it exists.
|
| void HidePopup();
|
|
|
|
|