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

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

Issue 1134793004: Autofill item deletion on android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test fix Created 5 years, 7 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: 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 e0a57cd328e58f5392102fc34ab546e118ecae4c..d585a4778b187c4dcb378bf35e58cdc45e316c02 100644
--- a/components/password_manager/core/browser/password_autofill_manager.cc
+++ b/components/password_manager/core/browser/password_autofill_manager.cc
@@ -218,6 +218,14 @@ void PasswordAutofillManager::DidAcceptSuggestion(const base::string16& value,
autofill_client_->HideAutofillPopup();
}
+bool PasswordAutofillManager::GetDeletionConfirmationText(
+ const base::string16& value,
+ int identifier,
+ base::string16* title,
+ base::string16* body) {
+ return false;
+}
+
bool PasswordAutofillManager::RemoveSuggestion(const base::string16& value,
int identifier) {
// http://crbug.com/329038

Powered by Google App Engine
This is Rietveld 408576698