Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Unified Diff: chrome/browser/password_manager/password_store_change.h

Issue 11000016: Move forms/ out of webkit/. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Response to review Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 8e5de8d57cb62c361b5ea2d41092313d21e54639..404f57b3a73f544a55b0be65fece5b0bec1766cb 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 "webkit/forms/password_form.h"
+#include "content/public/common/password_form.h"
class PasswordStoreChange {
public:
@@ -17,13 +17,13 @@ class PasswordStoreChange {
REMOVE,
};
- PasswordStoreChange(Type type, const webkit::forms::PasswordForm& form)
+ PasswordStoreChange(Type type, const content::PasswordForm& form)
: type_(type), form_(form) {
}
virtual ~PasswordStoreChange() {}
Type type() const { return type_; }
- const webkit::forms::PasswordForm& form() const { return form_; }
+ const content::PasswordForm& form() const { return form_; }
bool operator==(const PasswordStoreChange& other) const {
return type() == other.type() &&
@@ -45,7 +45,7 @@ class PasswordStoreChange {
private:
Type type_;
- webkit::forms::PasswordForm form_;
+ content::PasswordForm form_;
};
typedef std::vector<PasswordStoreChange> PasswordStoreChangeList;
« no previous file with comments | « chrome/browser/password_manager/password_store.cc ('k') | chrome/browser/password_manager/password_store_consumer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698