| Index: chrome/browser/password_manager/login_database.cc
|
| diff --git a/chrome/browser/password_manager/login_database.cc b/chrome/browser/password_manager/login_database.cc
|
| index 47e0193b1840c1877d0decab0afef89e5a18c17e..d209c01518e69c2a090dc04ea26ab431cfa711e8 100644
|
| --- a/chrome/browser/password_manager/login_database.cc
|
| +++ b/chrome/browser/password_manager/login_database.cc
|
| @@ -16,7 +16,7 @@
|
| #include "sql/statement.h"
|
| #include "sql/transaction.h"
|
|
|
| -using webkit_glue::PasswordForm;
|
| +using webkit::forms::PasswordForm;
|
|
|
| static const int kCurrentVersionNumber = 1;
|
| static const int kCompatibleVersionNumber = 1;
|
| @@ -332,7 +332,7 @@ bool LoginDatabase::GetLogins(const PasswordForm& form,
|
| bool LoginDatabase::GetLoginsCreatedBetween(
|
| const base::Time begin,
|
| const base::Time end,
|
| - std::vector<webkit_glue::PasswordForm*>* forms) const {
|
| + std::vector<webkit::forms::PasswordForm*>* forms) const {
|
| DCHECK(forms);
|
| sql::Statement s(db_.GetCachedStatement(SQL_FROM_HERE,
|
| "SELECT origin_url, action_url, "
|
|
|