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

Unified Diff: chrome/browser/ui/autofill/tab_autofill_manager_delegate.h

Issue 22623002: Extract AutofillDialogController interface and common utilities. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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/autofill/tab_autofill_manager_delegate.h
diff --git a/chrome/browser/ui/autofill/tab_autofill_manager_delegate.h b/chrome/browser/ui/autofill/tab_autofill_manager_delegate.h
index 004a0bb0230189e1d311157fc0df335838d93cd5..8cb06d91d87573165d90e31b577d578f7f129c5c 100644
--- a/chrome/browser/ui/autofill/tab_autofill_manager_delegate.h
+++ b/chrome/browser/ui/autofill/tab_autofill_manager_delegate.h
@@ -25,7 +25,7 @@ class WebContents;
namespace autofill {
class AutocheckoutBubble;
-class AutofillDialogControllerImpl;
+class AutofillDialogController;
class AutofillPopupControllerImpl;
struct FormData;
@@ -91,7 +91,7 @@ class TabAutofillManagerDelegate
content::WebContents* web_contents) OVERRIDE;
// Exposed for testing.
- AutofillDialogControllerImpl* GetDialogControllerForTesting() {
+ AutofillDialogController* GetDialogdControllerForTesting() {
aruslan 2013/08/07 21:07:00 Typo, wouldn't compile.
aruslan 2013/08/07 21:21:23 Done.
return dialog_controller_.get();
}
@@ -100,7 +100,7 @@ class TabAutofillManagerDelegate
friend class content::WebContentsUserData<TabAutofillManagerDelegate>;
content::WebContents* const web_contents_;
- base::WeakPtr<AutofillDialogControllerImpl> dialog_controller_;
+ base::WeakPtr<AutofillDialogController> dialog_controller_;
base::WeakPtr<AutocheckoutBubble> autocheckout_bubble_;
base::WeakPtr<AutofillPopupControllerImpl> popup_controller_;

Powered by Google App Engine
This is Rietveld 408576698