| Index: components/password_manager/core/browser/password_autofill_manager.cc
|
| diff --git a/components/password_manager/core/browser/password_autofill_manager.cc b/components/password_manager/core/browser/password_autofill_manager.cc
|
| index 15d5f7e3c8da005d4853f4dc3a8e78098bcaaebb..e0a57cd328e58f5392102fc34ab546e118ecae4c 100644
|
| --- a/components/password_manager/core/browser/password_autofill_manager.cc
|
| +++ b/components/password_manager/core/browser/password_autofill_manager.cc
|
| @@ -218,9 +218,11 @@ void PasswordAutofillManager::DidAcceptSuggestion(const base::string16& value,
|
| autofill_client_->HideAutofillPopup();
|
| }
|
|
|
| -void PasswordAutofillManager::RemoveSuggestion(const base::string16& value,
|
| +bool PasswordAutofillManager::RemoveSuggestion(const base::string16& value,
|
| int identifier) {
|
| - NOTREACHED();
|
| + // http://crbug.com/329038
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| }
|
|
|
| void PasswordAutofillManager::ClearPreviewedForm() {
|
|
|