| 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
|
|
|