| Index: chrome/browser/password_manager/password_store_default.cc
|
| diff --git a/chrome/browser/password_manager/password_store_default.cc b/chrome/browser/password_manager/password_store_default.cc
|
| index 0931f311f28f9c1db24535801da268a0ea01df18..a0544b6f64cc4d5384c7ad2a0e985a75a7457b1c 100644
|
| --- a/chrome/browser/password_manager/password_store_default.cc
|
| +++ b/chrome/browser/password_manager/password_store_default.cc
|
| @@ -19,7 +19,7 @@
|
| #include "content/public/browser/notification_service.h"
|
|
|
| using content::BrowserThread;
|
| -using webkit_glue::PasswordForm;
|
| +using webkit::forms::PasswordForm;
|
|
|
| // MigrateHelper handles migration from WebDB to PasswordStore. It runs
|
| // entirely on the UI thread and is owned by PasswordStoreDefault.
|
| @@ -181,7 +181,7 @@ void PasswordStoreDefault::RemoveLoginsCreatedBetweenImpl(
|
| }
|
|
|
| void PasswordStoreDefault::GetLoginsImpl(
|
| - GetLoginsRequest* request, const webkit_glue::PasswordForm& form) {
|
| + GetLoginsRequest* request, const webkit::forms::PasswordForm& form) {
|
| login_db_->GetLogins(form, &request->value);
|
| ForwardLoginsResult(request);
|
| }
|
|
|