Index: chrome/browser/ui/browser_tab_contents.cc |
diff --git a/chrome/browser/ui/browser_tab_contents.cc b/chrome/browser/ui/browser_tab_contents.cc |
index 23a9a665ef650c2c26cdfc11e2d3fb750d547d56..c96793cdcd7b29121c8c4a4f7b9364ed1ce741ca 100644 |
--- a/chrome/browser/ui/browser_tab_contents.cc |
+++ b/chrome/browser/ui/browser_tab_contents.cc |
@@ -106,9 +106,10 @@ void BrowserTabContents::AttachTabHelpers(WebContents* web_contents) { |
SessionTabHelper::CreateForWebContents(web_contents); |
AlternateErrorPageTabObserver::CreateForWebContents(web_contents); |
- TabAutofillManagerDelegate::CreateForWebContents(web_contents); |
+ autofill::TabAutofillManagerDelegate::CreateForWebContents(web_contents); |
AutofillManager::CreateForWebContentsAndDelegate( |
- web_contents, TabAutofillManagerDelegate::FromWebContents(web_contents)); |
+ web_contents, |
+ autofill::TabAutofillManagerDelegate::FromWebContents(web_contents)); |
if (CommandLine::ForCurrentProcess()->HasSwitch( |
switches::kEnableNewAutofillUi)) { |
AutofillExternalDelegate::CreateForWebContentsAndManager( |