Chromium Code Reviews| Index: chrome/browser/ui/autofill/autofill_dialog_controller_impl.h |
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h |
| index 818149d69f2de4e07384f5f9a749addaaacd5f00..45342316ebb5222538aab462af2f155a3feac2f1 100644 |
| --- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h |
| +++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h |
| @@ -59,6 +59,10 @@ class AutofillPopupControllerImpl; |
| class DataModelWrapper; |
| class TestableAutofillDialogView; |
| +namespace common { |
| +class AutofillDialogInput; |
| +} |
| + |
| namespace risk { |
| class Fingerprint; |
| } |
| @@ -743,6 +747,9 @@ class AutofillDialogControllerImpl : public AutofillDialogViewDelegate, |
| // A username string we display in the card scrambling/generated overlay. |
| base::string16 submitted_cardholder_name_; |
| + // An object for building inputs for autofill sections. |
| + scoped_ptr<common::AutofillDialogInput> inputs_builder_; |
|
Evan Stade
2013/10/02 00:57:19
I don't see any reason for this to be a member var
please use gerrit instead
2013/10/02 18:21:50
I've decided to make AutofillDialogControllerImpl
Evan Stade
2013/10/02 20:27:19
what state is the object going to hold?
|
| + |
| DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); |
| }; |