| 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 93e44550154d6cc659377e42b9ed2e2a96007155..6a98259e62617514cfeb59518cfaacde0f2e0055 100644
|
| --- a/components/autofill/content/browser/content_autofill_driver.cc
|
| +++ b/components/autofill/content/browser/content_autofill_driver.cc
|
| @@ -124,6 +124,16 @@ void ContentAutofillDriver::SendAutofillTypePredictionsToRenderer(
|
| type_predictions));
|
| }
|
|
|
| +void ContentAutofillDriver::RemovePasswordAutofillSuggestion(
|
| + const base::string16& username_to_remove) {
|
| + content::RenderViewHost* host = web_contents()->GetRenderViewHost();
|
| + if (!host)
|
| + return;
|
| +
|
| + host->Send(new AutofillMsg_RemovePasswordSuggestion(host->GetRoutingID(),
|
| + username_to_remove));
|
| +}
|
| +
|
| void ContentAutofillDriver::RendererShouldAcceptDataListSuggestion(
|
| const base::string16& value) {
|
| if (!RendererIsAvailable())
|
|
|