| Index: chrome/browser/password_manager/password_store_change.h
|
| diff --git a/chrome/browser/password_manager/password_store_change.h b/chrome/browser/password_manager/password_store_change.h
|
| index 885b6b7f43bf3b103d0b3af41a7e9933c872c8d9..10bda0558015a9320f47daa836afdb0808890289 100644
|
| --- a/chrome/browser/password_manager/password_store_change.h
|
| +++ b/chrome/browser/password_manager/password_store_change.h
|
| @@ -8,7 +8,7 @@
|
|
|
| #include <vector>
|
|
|
| -#include "webkit/glue/password_form.h"
|
| +#include "webkit/forms/password_form.h"
|
|
|
| class PasswordStoreChange {
|
| public:
|
| @@ -18,13 +18,13 @@ class PasswordStoreChange {
|
| REMOVE,
|
| };
|
|
|
| - PasswordStoreChange(Type type, const webkit_glue::PasswordForm& form)
|
| + PasswordStoreChange(Type type, const webkit::forms::PasswordForm& form)
|
| : type_(type), form_(form) {
|
| }
|
| virtual ~PasswordStoreChange() {}
|
|
|
| Type type() const { return type_; }
|
| - const webkit_glue::PasswordForm& form() const { return form_; }
|
| + const webkit::forms::PasswordForm& form() const { return form_; }
|
|
|
| bool operator==(const PasswordStoreChange& other) const {
|
| return type() == other.type() &&
|
| @@ -46,7 +46,7 @@ class PasswordStoreChange {
|
|
|
| private:
|
| Type type_;
|
| - webkit_glue::PasswordForm form_;
|
| + webkit::forms::PasswordForm form_;
|
| };
|
|
|
| typedef std::vector<PasswordStoreChange> PasswordStoreChangeList;
|
|
|