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

Unified Diff: chrome/browser/tab_contents/tab_contents.cc

Issue 1656005: Fix password mgr heuristics for sites that keep the login form around after signin (Closed)
Patch Set: Responding to feedback Created 10 years, 8 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
« no previous file with comments | « chrome/browser/tab_contents/tab_contents.h ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/tab_contents/tab_contents.cc
diff --git a/chrome/browser/tab_contents/tab_contents.cc b/chrome/browser/tab_contents/tab_contents.cc
index 1908aa3017aa4da86500c1ed9139ba03d9027ed9..dc18b8448e3c74ba806eaed9abcda85e8a6f136f 100644
--- a/chrome/browser/tab_contents/tab_contents.cc
+++ b/chrome/browser/tab_contents/tab_contents.cc
@@ -2593,9 +2593,14 @@ void TabContents::ShowModalHTMLDialog(const GURL& url, int width, int height,
}
}
-void TabContents::PasswordFormsSeen(
+void TabContents::PasswordFormsFound(
const std::vector<webkit_glue::PasswordForm>& forms) {
- GetPasswordManager()->PasswordFormsSeen(forms);
+ GetPasswordManager()->PasswordFormsFound(forms);
+}
+
+void TabContents::PasswordFormsVisible(
+ const std::vector<webkit_glue::PasswordForm>& visible_forms) {
+ GetPasswordManager()->PasswordFormsVisible(visible_forms);
}
// Checks to see if we should generate a keyword based on the OSDD, and if
« no previous file with comments | « chrome/browser/tab_contents/tab_contents.h ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698