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

Unified Diff: components/password_manager/core/browser/password_autofill_manager.cc

Issue 1074343004: get rid of another inappropriate ToLowerASCII (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@nodeleteallowed
Patch Set: Created 5 years, 8 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
« no previous file with comments | « components/password_manager/core/browser/password_autofill_manager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {
« no previous file with comments | « components/password_manager/core/browser/password_autofill_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698