| 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 1427f47e0f17048fe814f3c76f859ebab92dd8d3..a2f4d03fd4133b78cdd73ecf685d1dbcdc004f3f 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::forms::PasswordForm; | 
| +using content::PasswordForm; | 
|  | 
| static const int kCurrentVersionNumber = 1; | 
| static const int kCompatibleVersionNumber = 1; | 
| @@ -297,7 +297,7 @@ bool LoginDatabase::GetLogins(const PasswordForm& form, | 
| bool LoginDatabase::GetLoginsCreatedBetween( | 
| const base::Time begin, | 
| const base::Time end, | 
| -    std::vector<webkit::forms::PasswordForm*>* forms) const { | 
| +    std::vector<content::PasswordForm*>* forms) const { | 
| DCHECK(forms); | 
| sql::Statement s(db_.GetCachedStatement(SQL_FROM_HERE, | 
| "SELECT origin_url, action_url, " | 
|  |