summaryrefslogtreecommitdiffstats
path: root/chrome/browser/password_manager/password_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/password_manager/password_manager.cc')
-rw-r--r--chrome/browser/password_manager/password_manager.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/chrome/browser/password_manager/password_manager.cc b/chrome/browser/password_manager/password_manager.cc
index fdd0138..2f93ea5 100644
--- a/chrome/browser/password_manager/password_manager.cc
+++ b/chrome/browser/password_manager/password_manager.cc
@@ -21,8 +21,8 @@
using content::UserMetricsAction;
using content::WebContents;
-using webkit::forms::PasswordForm;
-using webkit::forms::PasswordFormMap;
+using content::PasswordForm;
+using content::PasswordFormMap;
namespace {
@@ -285,12 +285,12 @@ void PasswordManager::Autofill(
case PasswordForm::SCHEME_HTML: {
// Note the check above is required because the observer_ for a non-HTML
// schemed password form may have been freed, so we need to distinguish.
- webkit::forms::PasswordFormFillData fill_data;
- webkit::forms::PasswordFormDomManager::InitFillData(form_for_autofill,
- best_matches,
- &preferred_match,
- wait_for_username,
- &fill_data);
+ PasswordFormFillData fill_data;
+ InitPasswordFormFillData(form_for_autofill,
+ best_matches,
+ &preferred_match,
+ wait_for_username,
+ &fill_data);
delegate_->FillPasswordForm(fill_data);
return;
}