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

Unified Diff: chrome/browser/ui/autofill/chrome_autofill_client.cc

Issue 2971783002: Skeleton for showing "Show all saved passwords row" for Linux/CrOs/Windows platforms (Closed)
Patch Set: Fix ios compilation Created 3 years, 5 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/autofill/chrome_autofill_client.cc
diff --git a/chrome/browser/ui/autofill/chrome_autofill_client.cc b/chrome/browser/ui/autofill/chrome_autofill_client.cc
index 93c22f4efcdfd8e8b35585eafc0d324c21d71eaf..6e72518c599ffc5dbea7bebcd99c6ce481566062 100644
--- a/chrome/browser/ui/autofill/chrome_autofill_client.cc
+++ b/chrome/browser/ui/autofill/chrome_autofill_client.cc
@@ -405,4 +405,12 @@ void ChromeAutofillClient::ShowHttpNotSecureExplanation() {
false /* is_renderer_initiated */));
}
+void ChromeAutofillClient::ShowPasswordsSettingsPage() {
+#if !defined(OS_ANDROID)
+ chrome::ShowSettingsSubPage(
+ chrome::FindBrowserWithWebContents(web_contents()),
+ chrome::kPasswordManagerSubPage);
+#endif
+}
+
} // namespace autofill

Powered by Google App Engine
This is Rietveld 408576698