| Index: chrome/browser/password_manager/password_form_data.cc
|
| diff --git a/chrome/browser/password_manager/password_form_data.cc b/chrome/browser/password_manager/password_form_data.cc
|
| index b428d9a6590cd6e2119923d5527fb806babe1b35..ebc77613a6fc8024c98bcb35271cf98e92071a91 100644
|
| --- a/chrome/browser/password_manager/password_form_data.cc
|
| +++ b/chrome/browser/password_manager/password_form_data.cc
|
| @@ -6,7 +6,7 @@
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/browser/password_manager/password_form_data.h"
|
|
|
| -using webkit_glue::PasswordForm;
|
| +using webkit::forms::PasswordForm;
|
|
|
| PasswordForm* CreatePasswordFormFromData(
|
| const PasswordFormData& form_data) {
|
| @@ -69,7 +69,7 @@ std::ostream& operator<<(std::ostream& os, const PasswordForm& form) {
|
| << "date_created: " << form.date_created.ToDoubleT();
|
| }
|
|
|
| -typedef std::set<const webkit_glue::PasswordForm*> SetOfForms;
|
| +typedef std::set<const webkit::forms::PasswordForm*> SetOfForms;
|
|
|
| bool ContainsSamePasswordFormsPtr(
|
| const std::vector<PasswordForm*>& first,
|
| @@ -98,8 +98,8 @@ bool ContainsSamePasswordFormsPtr(
|
| }
|
|
|
| bool ContainsSamePasswordForms(
|
| - std::vector<webkit_glue::PasswordForm>& first,
|
| - std::vector<webkit_glue::PasswordForm>& second) {
|
| + std::vector<webkit::forms::PasswordForm>& first,
|
| + std::vector<webkit::forms::PasswordForm>& second) {
|
| std::vector<PasswordForm*> first_ptr;
|
| for (unsigned int i = 0; i < first.size(); ++i) {
|
| first_ptr.push_back(&first[i]);
|
|
|