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

Unified Diff: chrome/browser/ui/tab_helpers.cc

Issue 306053008: Rename AutofillManagerDelegate to AutofillClient. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 6 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/tab_helpers.cc
diff --git a/chrome/browser/ui/tab_helpers.cc b/chrome/browser/ui/tab_helpers.cc
index 32ef625b711d9f942434e6f07448eba1767bbcca..ee5a729357fd3c64e70f7f2ec3e4612d90b5a228 100644
--- a/chrome/browser/ui/tab_helpers.cc
+++ b/chrome/browser/ui/tab_helpers.cc
@@ -17,7 +17,7 @@
#include "chrome/browser/sessions/session_tab_helper.h"
#include "chrome/browser/tab_contents/navigation_metrics_recorder.h"
#include "chrome/browser/translate/chrome_translate_client.h"
-#include "chrome/browser/ui/autofill/tab_autofill_manager_delegate.h"
+#include "chrome/browser/ui/autofill/chrome_autofill_client.h"
#include "chrome/browser/ui/blocked_content/popup_blocker_tab_helper.h"
#include "chrome/browser/ui/bookmarks/bookmark_tab_helper.h"
#include "chrome/browser/ui/find_bar/find_tab_helper.h"
@@ -112,17 +112,17 @@ void TabHelpers::AttachTabHelpers(WebContents* web_contents) {
// --- Common tab helpers ---
- autofill::TabAutofillManagerDelegate::CreateForWebContents(web_contents);
+ autofill::ChromeAutofillClient::CreateForWebContents(web_contents);
autofill::ContentAutofillDriver::CreateForWebContentsAndDelegate(
web_contents,
- autofill::TabAutofillManagerDelegate::FromWebContents(web_contents),
+ autofill::ChromeAutofillClient::FromWebContents(web_contents),
g_browser_process->GetApplicationLocale(),
autofill::AutofillManager::ENABLE_AUTOFILL_DOWNLOAD_MANAGER);
BookmarkTabHelper::CreateForWebContents(web_contents);
chrome_browser_net::NetErrorTabHelper::CreateForWebContents(web_contents);
- ChromePasswordManagerClient::CreateForWebContentsWithAutofillManagerDelegate(
+ ChromePasswordManagerClient::CreateForWebContentsWithAutofillClient(
web_contents,
- autofill::TabAutofillManagerDelegate::FromWebContents(web_contents));
+ autofill::ChromeAutofillClient::FromWebContents(web_contents));
CoreTabHelper::CreateForWebContents(web_contents);
extensions::TabHelper::CreateForWebContents(web_contents);
FaviconTabHelper::CreateForWebContents(web_contents);
« no previous file with comments | « chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa_browsertest.mm ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698