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

Unified Diff: components/autofill/content/browser/autofill_driver_impl.cc

Issue 23033016: Remove autocheckout code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Even more deletes, and Ilya review. 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: components/autofill/content/browser/autofill_driver_impl.cc
diff --git a/components/autofill/content/browser/autofill_driver_impl.cc b/components/autofill/content/browser/autofill_driver_impl.cc
index d0cb1f62861a298732d83d7cdfdbb183a91e8e20..c63a072524ff573b15f8ccf75c4268093b985477 100644
--- a/components/autofill/content/browser/autofill_driver_impl.cc
+++ b/components/autofill/content/browser/autofill_driver_impl.cc
@@ -44,11 +44,6 @@ void AutofillDriverImpl::CreateForWebContentsAndDelegate(
delegate,
app_locale,
enable_download_manager));
- // Trigger the lazy creation of AutocheckoutWhitelistManagerService, and
- // schedule a fetch of the Autocheckout whitelist file if it's not already
- // loaded. This helps ensure that the whitelist will be available by the time
- // the user navigates to a form on which Autocheckout should be enabled.
- delegate->GetAutocheckoutWhitelistManager();
}
// static
@@ -188,12 +183,6 @@ bool AutofillDriverImpl::OnMessageReceived(const IPC::Message& message) {
IPC_MESSAGE_FORWARD(AutofillHostMsg_RequestAutocomplete,
autofill_manager_.get(),
AutofillManager::OnRequestAutocomplete)
- IPC_MESSAGE_FORWARD(AutofillHostMsg_AutocheckoutPageCompleted,
- autofill_manager_.get(),
- AutofillManager::OnAutocheckoutPageCompleted)
- IPC_MESSAGE_FORWARD(AutofillHostMsg_MaybeShowAutocheckoutBubble,
- autofill_manager_.get(),
- AutofillManager::OnMaybeShowAutocheckoutBubble)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;

Powered by Google App Engine
This is Rietveld 408576698