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

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

Issue 23742004: Move PasswordForm from //content to //autofill. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_password_form_conversion_utils
Patch Set: Rebase Created 7 years, 3 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_default.h
diff --git a/chrome/browser/password_manager/password_store_default.h b/chrome/browser/password_manager/password_store_default.h
index 2fb418c56b7ae1a858cb61dfea51561f94cc3729..cb8d7b0f89cb530e3612f48794e71ed6f87e8a06 100644
--- a/chrome/browser/password_manager/password_store_default.h
+++ b/chrome/browser/password_manager/password_store_default.h
@@ -29,22 +29,22 @@ class PasswordStoreDefault : public PasswordStore {
// Implements PasswordStore interface.
virtual void ReportMetricsImpl() OVERRIDE;
- virtual void AddLoginImpl(const content::PasswordForm& form) OVERRIDE;
+ virtual void AddLoginImpl(const autofill::PasswordForm& form) OVERRIDE;
virtual void UpdateLoginImpl(
- const content::PasswordForm& form) OVERRIDE;
+ const autofill::PasswordForm& form) OVERRIDE;
virtual void RemoveLoginImpl(
- const content::PasswordForm& form) OVERRIDE;
+ const autofill::PasswordForm& form) OVERRIDE;
virtual void RemoveLoginsCreatedBetweenImpl(
const base::Time& delete_begin, const base::Time& delete_end) OVERRIDE;
virtual void GetLoginsImpl(
- const content::PasswordForm& form,
+ const autofill::PasswordForm& form,
const ConsumerCallbackRunner& callback_runner) OVERRIDE;
virtual void GetAutofillableLoginsImpl(GetLoginsRequest* request) OVERRIDE;
virtual void GetBlacklistLoginsImpl(GetLoginsRequest* request) OVERRIDE;
virtual bool FillAutofillableLogins(
- std::vector<content::PasswordForm*>* forms) OVERRIDE;
+ std::vector<autofill::PasswordForm*>* forms) OVERRIDE;
virtual bool FillBlacklistLogins(
- std::vector<content::PasswordForm*>* forms) OVERRIDE;
+ std::vector<autofill::PasswordForm*>* forms) OVERRIDE;
protected:
inline bool DeleteAndRecreateDatabaseFile() {
« 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