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

Unified Diff: chrome/browser/ui/passwords/password_manager_presenter.h

Issue 489103004: Allow editing passwords in settings/passwords (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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: chrome/browser/ui/passwords/password_manager_presenter.h
diff --git a/chrome/browser/ui/passwords/password_manager_presenter.h b/chrome/browser/ui/passwords/password_manager_presenter.h
index 66c68462967c25cc4689f18f2bad21fa34f7e568..8d1ac1b8a1b56612dca7efe8b64530c8c2953ebe 100644
--- a/chrome/browser/ui/passwords/password_manager_presenter.h
+++ b/chrome/browser/ui/passwords/password_manager_presenter.h
@@ -46,6 +46,11 @@ class PasswordManagerPresenter
// Gets the password exception entry at |index|.
const autofill::PasswordForm* GetPasswordException(size_t index);
+ // Updates the password value of the entry at |index|.
vabr (Chromium) 2014/08/22 10:11:44 nit: This whole comment could be shortened to: "Up
jaekyeom 2014/08/25 05:15:51 Done.
+ // |index| the entry index to be updated.
+ // |password_value| the new password value.
+ void UpdatePassword(size_t index, const base::string16& password_value);
+
// Removes the saved password entry at |index|.
// |index| the entry index to be removed.
void RemoveSavedPassword(size_t index);

Powered by Google App Engine
This is Rietveld 408576698