| Index: chrome/browser/ui/cocoa/autofill/autofill_section_container.h
|
| diff --git a/chrome/browser/ui/cocoa/autofill/autofill_section_container.h b/chrome/browser/ui/cocoa/autofill/autofill_section_container.h
|
| index 0e0caf3c8996e597a06923d825fcf0e4549e95b5..7d3782a5200a6d9290c83b22fbf7bb57a7fdb74f 100644
|
| --- a/chrome/browser/ui/cocoa/autofill/autofill_section_container.h
|
| +++ b/chrome/browser/ui/cocoa/autofill/autofill_section_container.h
|
| @@ -14,7 +14,7 @@
|
| #import "chrome/browser/ui/cocoa/autofill/autofill_layout.h"
|
|
|
| namespace autofill {
|
| - class AutofillDialogController;
|
| + class AutofillDialogViewDelegate;
|
| }
|
|
|
| @class AutofillSectionView;
|
| @@ -34,7 +34,7 @@ namespace autofill {
|
|
|
| // View controller for a section of the payment details. Contains a label
|
| // describing the section as well as associated inputs and controls. Built
|
| -// dynamically based on data retrieved from AutofillDialogController.
|
| +// dynamically based on data retrieved from AutofillDialogViewDelegate.
|
| @interface AutofillSectionContainer :
|
| NSViewController<AutofillLayout, AutofillInputDelegate> {
|
| @private
|
| @@ -54,7 +54,7 @@ namespace autofill {
|
|
|
| base::scoped_nsobject<MenuController> menuController_;
|
| autofill::DialogSection section_;
|
| - autofill::AutofillDialogController* controller_; // Not owned.
|
| + autofill::AutofillDialogViewDelegate* controller_; // Not owned.
|
| }
|
|
|
| @property(readonly, nonatomic) autofill::DialogSection section;
|
| @@ -62,7 +62,7 @@ namespace autofill {
|
|
|
| // Designated initializer. Queries |controller| for the list of desired input
|
| // fields for |section|.
|
| -- (id)initWithController:(autofill::AutofillDialogController*)controller
|
| +- (id)initWithController:(autofill::AutofillDialogViewDelegate*)controller
|
| forSection:(autofill::DialogSection)section;
|
|
|
| // Populates |output| with mappings from field identification to input value.
|
|
|