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

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

Issue 1931043002: Remove requestAutocomplete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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/content_autofill_driver.cc
diff --git a/components/autofill/content/browser/content_autofill_driver.cc b/components/autofill/content/browser/content_autofill_driver.cc
index 0b734d6c1bd9201b10898a03b820870a353684b7..ed4860c41c4950f551f7a83457684b3b12cb3780 100644
--- a/components/autofill/content/browser/content_autofill_driver.cc
+++ b/components/autofill/content/browser/content_autofill_driver.cc
@@ -40,8 +40,7 @@ ContentAutofillDriver::ContentAutofillDriver(
client,
app_locale,
enable_download_manager)),
- autofill_external_delegate_(autofill_manager_.get(), this),
- request_autocomplete_manager_(this) {
+ autofill_external_delegate_(autofill_manager_.get(), this) {
autofill_manager_->SetExternalDelegate(&autofill_external_delegate_);
// ContentAutofillDriver is guaranteed to outlive |render_frame_host|,
@@ -218,9 +217,6 @@ bool ContentAutofillDriver::HandleMessage(const IPC::Message& message) {
IPC_MESSAGE_FORWARD(AutofillHostMsg_SetDataList,
autofill_manager_.get(),
AutofillManager::OnSetDataList)
- IPC_MESSAGE_FORWARD(AutofillHostMsg_RequestAutocomplete,
- &request_autocomplete_manager_,
- RequestAutocompleteManager::OnRequestAutocomplete)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;

Powered by Google App Engine
This is Rietveld 408576698