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

Unified Diff: chrome/browser/autofill/autofill_manager.cc

Issue 9473001: Extract minimal RenderViewHost interface for embedders, leaving (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to LKGR. Created 8 years, 10 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/autofill/autofill_manager.cc
diff --git a/chrome/browser/autofill/autofill_manager.cc b/chrome/browser/autofill/autofill_manager.cc
index 66bd938e7700fbb09f45795256f2451c867618ef..f9219576720f88fcba6bf4d9e9f8bc383ae9dc1d 100644
--- a/chrome/browser/autofill/autofill_manager.cc
+++ b/chrome/browser/autofill/autofill_manager.cc
@@ -585,7 +585,7 @@ void AutofillManager::OnFillAutofillFormData(int query_id,
}
}
- host->Send(new AutofillMsg_FormDataFilled(host->routing_id(), query_id,
+ host->Send(new AutofillMsg_FormDataFilled(host->GetRoutingID(), query_id,
result));
return;
}
@@ -635,7 +635,7 @@ void AutofillManager::OnFillAutofillFormData(int query_id,
autofilled_form_signatures_.pop_back();
host->Send(new AutofillMsg_FormDataFilled(
- host->routing_id(), query_id, result));
+ host->GetRoutingID(), query_id, result));
}
void AutofillManager::OnShowAutofillDialog() {
@@ -724,8 +724,9 @@ void AutofillManager::SendAutofillTypePredictions(
std::vector<FormDataPredictions> type_predictions;
FormStructure::GetFieldTypePredictions(forms, &type_predictions);
- host->Send(new AutofillMsg_FieldTypePredictionsAvailable(host->routing_id(),
- type_predictions));
+ host->Send(
+ new AutofillMsg_FieldTypePredictionsAvailable(host->GetRoutingID(),
+ type_predictions));
}
void AutofillManager::ImportFormData(const FormStructure& submitted_form) {
« no previous file with comments | « chrome/browser/autofill/autofill_external_delegate.cc ('k') | chrome/browser/automation/automation_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698