Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5934)

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_section_container.h

Issue 21692002: Rename AutofillDialogController to AutofillDialogViewDelegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698