| Index: chrome/browser/ui/cocoa/autofill/autofill_details_container.h
|
| diff --git a/chrome/browser/ui/cocoa/autofill/autofill_details_container.h b/chrome/browser/ui/cocoa/autofill/autofill_details_container.h
|
| index 96021697d4d91e7c692bc6f51d54809233d29206..9c9083347bfdbab766d1bea726a4b20b9893fae1 100644
|
| --- a/chrome/browser/ui/cocoa/autofill/autofill_details_container.h
|
| +++ b/chrome/browser/ui/cocoa/autofill/autofill_details_container.h
|
| @@ -14,7 +14,7 @@
|
|
|
|
|
| namespace autofill {
|
| -class AutofillDialogController;
|
| +class AutofillDialogViewDelegate;
|
| }
|
|
|
| @class InfoBubbleView;
|
| @@ -33,16 +33,16 @@ class AutofillDialogController;
|
| // An info bubble to display validation errors.
|
| base::scoped_nsobject<InfoBubbleView> infoBubble_;
|
|
|
| - autofill::AutofillDialogController* controller_; // Not owned.
|
| + autofill::AutofillDialogViewDelegate* delegate_; // Not owned.
|
| }
|
|
|
| // Designated initializer.
|
| -- (id)initWithController:(autofill::AutofillDialogController*)controller;
|
| +- (id)initWithDelegate:(autofill::AutofillDialogViewDelegate*)delegate;
|
|
|
| // Retrieve the container for the specified |section|.
|
| - (AutofillSectionContainer*)sectionForId:(autofill::DialogSection)section;
|
|
|
| -// Called when the controller-maintained suggestions model has changed.
|
| +// Called when the delegate-maintained suggestions model has changed.
|
| - (void)modelChanged;
|
|
|
| // Validate every visible details section.
|
|
|