Chromium Code Reviews| 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_; |