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

Unified Diff: chrome/browser/password_manager/password_store_default.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_default.h
diff --git a/chrome/browser/password_manager/password_store_default.h b/chrome/browser/password_manager/password_store_default.h
index e4b356f0f0df28a0a69a90e8ae076809ecfccaef..a796c4396e33e019845d410bd0b26f3c527734dd 100644
--- a/chrome/browser/password_manager/password_store_default.h
+++ b/chrome/browser/password_manager/password_store_default.h
@@ -31,19 +31,21 @@ class PasswordStoreDefault : public PasswordStore {
// Implements PasswordStore interface.
virtual void Shutdown() OVERRIDE;
virtual void ReportMetricsImpl() OVERRIDE;
- virtual void AddLoginImpl(const webkit_glue::PasswordForm& form) OVERRIDE;
- virtual void UpdateLoginImpl(const webkit_glue::PasswordForm& form) OVERRIDE;
- virtual void RemoveLoginImpl(const webkit_glue::PasswordForm& form) OVERRIDE;
+ virtual void AddLoginImpl(const webkit::forms::PasswordForm& form) OVERRIDE;
+ virtual void UpdateLoginImpl(
+ const webkit::forms::PasswordForm& form) OVERRIDE;
+ virtual void RemoveLoginImpl(
+ const webkit::forms::PasswordForm& form) OVERRIDE;
virtual void RemoveLoginsCreatedBetweenImpl(
const base::Time& delete_begin, const base::Time& delete_end) OVERRIDE;
virtual void GetLoginsImpl(GetLoginsRequest* request,
- const webkit_glue::PasswordForm& form) OVERRIDE;
+ const webkit::forms::PasswordForm& form) OVERRIDE;
virtual void GetAutofillableLoginsImpl(GetLoginsRequest* request) OVERRIDE;
virtual void GetBlacklistLoginsImpl(GetLoginsRequest* request) OVERRIDE;
virtual bool FillAutofillableLogins(
- std::vector<webkit_glue::PasswordForm*>* forms) OVERRIDE;
+ std::vector<webkit::forms::PasswordForm*>* forms) OVERRIDE;
virtual bool FillBlacklistLogins(
- std::vector<webkit_glue::PasswordForm*>* forms) OVERRIDE;
+ std::vector<webkit::forms::PasswordForm*>* forms) OVERRIDE;
scoped_refptr<WebDataService> web_data_service_;
« no previous file with comments | « chrome/browser/password_manager/password_store_consumer.h ('k') | chrome/browser/password_manager/password_store_default.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698