| Index: chrome/browser/ui/cocoa/autofill/autofill_notification_container.h
|
| diff --git a/chrome/browser/ui/cocoa/autofill/autofill_notification_container.h b/chrome/browser/ui/cocoa/autofill/autofill_notification_container.h
|
| index 7271f16d300b9591346f4e234f5fb799c0753448..22352b99924c61e16c1955c8f2484b91dc21a4a9 100644
|
| --- a/chrome/browser/ui/cocoa/autofill/autofill_notification_container.h
|
| +++ b/chrome/browser/ui/cocoa/autofill/autofill_notification_container.h
|
| @@ -18,7 +18,7 @@
|
| namespace autofill {
|
| class DialogNotification;
|
| typedef std::vector<DialogNotification> DialogNotifications;
|
| - class AutofillDialogController;
|
| + class AutofillDialogViewDelegate;
|
| }
|
|
|
| // Container for all notifications shown in requestAutocomplete dialog.
|
| @@ -33,12 +33,12 @@ namespace autofill {
|
| // The notification that the checkbox is associated with.
|
| scoped_ptr<autofill::DialogNotification> checkboxNotification_;
|
|
|
| - // Main controller for the dialog. Weak, owns dialog.
|
| - autofill::AutofillDialogController* controller_;
|
| + // Main delegate for the dialog. Weak, owns dialog.
|
| + autofill::AutofillDialogViewDelegate* delegate_;
|
| }
|
|
|
| // Designated initializer.
|
| -- (id)initWithController:(autofill::AutofillDialogController*)controller;
|
| +- (id)initWithDelegate:(autofill::AutofillDialogViewDelegate*)delegate;
|
|
|
| // Computes the views preferred size given a fixed width.
|
| - (NSSize)preferredSizeForWidth:(CGFloat)width;
|
| @@ -54,4 +54,4 @@ namespace autofill {
|
|
|
| @end
|
|
|
| -#endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_NOTIFICATION_CONTAINER_H_
|
| +#endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_NOTIFICATION_CONTAINER_H_
|
|
|