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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.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_dialog_cocoa.h
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h b/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h
index cb2d8590abc23bf785e2a5af535b8d3cfad373cf..bc7e5b5d6dc4d53e45668c5b1056f9e23a8acf58 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h
+++ b/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h
@@ -20,7 +20,7 @@ namespace content {
}
namespace autofill {
- class AutofillDialogController;
+ class AutofillDialogViewDelegate;
}
@class AutofillAccountChooser;
@@ -34,7 +34,7 @@ class AutofillDialogCocoa : public AutofillDialogView,
public TestableAutofillDialogView,
public ConstrainedWindowMacDelegate {
public:
- explicit AutofillDialogCocoa(AutofillDialogController* controller);
+ explicit AutofillDialogCocoa(AutofillDialogViewDelegate* controller);
virtual ~AutofillDialogCocoa();
// AutofillDialogView implementation:
@@ -78,7 +78,7 @@ class AutofillDialogCocoa : public AutofillDialogView,
virtual void OnConstrainedWindowClosed(
ConstrainedWindowMac* window) OVERRIDE;
- AutofillDialogController* controller() { return controller_; }
+ AutofillDialogViewDelegate* controller() { return controller_; }
groby-ooo-7-16 2013/08/02 20:22:21 delegate - here and elsewhere
// Posts a close request on the current message loop.
void PerformClose();
@@ -94,7 +94,7 @@ class AutofillDialogCocoa : public AutofillDialogView,
base::WeakPtrFactory<AutofillDialogCocoa> close_weak_ptr_factory_;
// The controller |this| queries for logic and state.
- AutofillDialogController* controller_;
+ AutofillDialogViewDelegate* controller_;
};
} // autofill

Powered by Google App Engine
This is Rietveld 408576698