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

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

Issue 8680040: Group forms-related files in webkit/glue in a forms/ subdirectory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + another build fix Created 9 years 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 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;
« 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