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

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

Issue 21124012: [WIP] Split AutofillDialogControllerImpl + integrate rAc on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/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..352e27552b3cec2cc9f861793e314b0c02711cc3 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 AutofillDialogTabManagerDelegate;
class AutofillPopupControllerImpl;
struct FormData;
@@ -91,8 +91,8 @@ class TabAutofillManagerDelegate
content::WebContents* web_contents) OVERRIDE;
// Exposed for testing.
- AutofillDialogControllerImpl* GetDialogControllerForTesting() {
- return dialog_controller_.get();
+ AutofillDialogTabManagerDelegate* GetDialogTabManagerDelegateForTesting() {
+ return dialog_delegate_.get();
}
private:
@@ -100,7 +100,7 @@ class TabAutofillManagerDelegate
friend class content::WebContentsUserData<TabAutofillManagerDelegate>;
content::WebContents* const web_contents_;
- base::WeakPtr<AutofillDialogControllerImpl> dialog_controller_;
+ base::WeakPtr<AutofillDialogTabManagerDelegate> dialog_delegate_;
base::WeakPtr<AutocheckoutBubble> autocheckout_bubble_;
base::WeakPtr<AutofillPopupControllerImpl> popup_controller_;

Powered by Google App Engine
This is Rietveld 408576698