| Index: components/autofill/browser/autofill_manager.cc
|
| diff --git a/components/autofill/browser/autofill_manager.cc b/components/autofill/browser/autofill_manager.cc
|
| index 35b703c59e24d9735bef6341499e06ab1d54e0a4..debcc3a228c671178e29283b2be9a6c0d9588f1a 100644
|
| --- a/components/autofill/browser/autofill_manager.cc
|
| +++ b/components/autofill/browser/autofill_manager.cc
|
| @@ -744,9 +744,13 @@ void AutofillManager::OnAddPasswordFormMapping(
|
| void AutofillManager::OnShowPasswordSuggestions(
|
| const FormFieldData& field,
|
| const gfx::RectF& bounds,
|
| - const std::vector<base::string16>& suggestions) {
|
| + const std::vector<base::string16>& suggestions,
|
| + const std::vector<base::string16>& origins) {
|
| if (external_delegate_)
|
| - external_delegate_->OnShowPasswordSuggestions(suggestions, field, bounds);
|
| + external_delegate_->OnShowPasswordSuggestions(suggestions,
|
| + origins,
|
| + field,
|
| + bounds);
|
| }
|
|
|
| void AutofillManager::OnSetDataList(const std::vector<base::string16>& values,
|
|
|