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 404f57b3a73f544a55b0be65fece5b0bec1766cb..659b7928da2de0bce6d788aeb9ceab84b32dcfd5 100644 |
--- a/chrome/browser/password_manager/password_store_change.h |
+++ b/chrome/browser/password_manager/password_store_change.h |
@@ -7,7 +7,7 @@ |
#include <vector> |
-#include "content/public/common/password_form.h" |
+#include "components/autofill/core/common/password_form.h" |
class PasswordStoreChange { |
public: |
@@ -17,13 +17,13 @@ class PasswordStoreChange { |
REMOVE, |
}; |
- PasswordStoreChange(Type type, const content::PasswordForm& form) |
+ PasswordStoreChange(Type type, const autofill::PasswordForm& form) |
: type_(type), form_(form) { |
} |
virtual ~PasswordStoreChange() {} |
Type type() const { return type_; } |
- const content::PasswordForm& form() const { return form_; } |
+ const autofill::PasswordForm& form() const { return form_; } |
bool operator==(const PasswordStoreChange& other) const { |
return type() == other.type() && |
@@ -45,7 +45,7 @@ class PasswordStoreChange { |
private: |
Type type_; |
- content::PasswordForm form_; |
+ autofill::PasswordForm form_; |
}; |
typedef std::vector<PasswordStoreChange> PasswordStoreChangeList; |