summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsu.koo <msu.koo@samsung.com>2015-11-07 17:00:01 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-08 01:01:07 +0000
commit37a9b18f893843bebf55b85c8f541cdd8517c932 (patch)
treedc6f314e29db54ecd017708e885a021df7e231de
parent36bb6108a8f0444fea13d008c78d95a7c4f2b956 (diff)
downloadchromium_src-37a9b18f893843bebf55b85c8f541cdd8517c932.zip
chromium_src-37a9b18f893843bebf55b85c8f541cdd8517c932.tar.gz
chromium_src-37a9b18f893843bebf55b85c8f541cdd8517c932.tar.bz2
Clean-up RemoveSuggestion and related codes
This patch is to clean-up PaswordAutofillManager::RemoveSuggestion and related codes which is not supported. BUG=551392 Review URL: https://codereview.chromium.org/1432603007 Cr-Commit-Position: refs/heads/master@{#358541}
-rw-r--r--components/password_manager/core/browser/password_autofill_manager.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/password_manager/core/browser/password_autofill_manager.cc b/components/password_manager/core/browser/password_autofill_manager.cc
index 3100bdd..6aa0418 100644
--- a/components/password_manager/core/browser/password_autofill_manager.cc
+++ b/components/password_manager/core/browser/password_autofill_manager.cc
@@ -258,8 +258,8 @@ bool PasswordAutofillManager::GetDeletionConfirmationText(
bool PasswordAutofillManager::RemoveSuggestion(const base::string16& value,
int identifier) {
- // http://crbug.com/329038
- NOTIMPLEMENTED();
+ // Password suggestions cannot be deleted this way.
+ // See http://crbug.com/329038#c15
return false;
}