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

Unified Diff: chrome/browser/ui/passwords/manage_passwords_ui_controller.cc

Issue 583883003: [Password Generation] Change links in the bubble to point to the local manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac tests Created 6 years, 3 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/manage_passwords_ui_controller.cc
diff --git a/chrome/browser/ui/passwords/manage_passwords_ui_controller.cc b/chrome/browser/ui/passwords/manage_passwords_ui_controller.cc
index 0dc9467ceeedd655f718a917c6979e1a97e7c362..ffa8ffad86f52e0fbb02af45a8bc9baefb900048 100644
--- a/chrome/browser/ui/passwords/manage_passwords_ui_controller.cc
+++ b/chrome/browser/ui/passwords/manage_passwords_ui_controller.cc
@@ -167,18 +167,6 @@ void ManagePasswordsUIController::
#endif
}
-void ManagePasswordsUIController::NavigateToAccountCentralManagementPage() {
- // TODO(gcasto): FindBowserWithWebContents() doesn't exist on Android.
- // Need to determine how this should work there.
-#if !defined(OS_ANDROID)
- Browser* browser = chrome::FindBrowserWithWebContents(web_contents());
- content::OpenURLParams params(
- GURL(chrome::kAutoPasswordGenerationLearnMoreURL), content::Referrer(),
- NEW_FOREGROUND_TAB, ui::PAGE_TRANSITION_LINK, false);
- browser->OpenURL(params);
-#endif
-}
-
void ManagePasswordsUIController::SavePassword() {
DCHECK(PasswordPendingUserDecision());
SavePasswordInternal();

Powered by Google App Engine
This is Rietveld 408576698