| Index: chrome/browser/password_manager/password_store_mac.h
|
| diff --git a/chrome/browser/password_manager/password_store_mac.h b/chrome/browser/password_manager/password_store_mac.h
|
| index 3974ecbfc86b7c1272e817ec3e13aed80c2f78fc..39cc572c37bbbc2c9f870a477c3be9d24c419803 100644
|
| --- a/chrome/browser/password_manager/password_store_mac.h
|
| +++ b/chrome/browser/password_manager/password_store_mac.h
|
| @@ -44,44 +44,44 @@ class PasswordStoreMac : public PasswordStore {
|
|
|
| private:
|
| virtual void ReportMetricsImpl() OVERRIDE;
|
| - virtual void AddLoginImpl(const webkit::forms::PasswordForm& form) OVERRIDE;
|
| + virtual void AddLoginImpl(const content::PasswordForm& form) OVERRIDE;
|
| virtual void UpdateLoginImpl(
|
| - const webkit::forms::PasswordForm& form) OVERRIDE;
|
| + const content::PasswordForm& form) OVERRIDE;
|
| virtual void RemoveLoginImpl(
|
| - const webkit::forms::PasswordForm& form) OVERRIDE;
|
| + const content::PasswordForm& form) OVERRIDE;
|
| virtual void RemoveLoginsCreatedBetweenImpl(
|
| const base::Time& delete_begin, const base::Time& delete_end) OVERRIDE;
|
| virtual void GetLoginsImpl(GetLoginsRequest* request,
|
| - const webkit::forms::PasswordForm& form) OVERRIDE;
|
| + const content::PasswordForm& form) OVERRIDE;
|
| virtual void GetAutofillableLoginsImpl(GetLoginsRequest* request) OVERRIDE;
|
| virtual void GetBlacklistLoginsImpl(GetLoginsRequest* request) OVERRIDE;
|
| virtual bool FillAutofillableLogins(
|
| - std::vector<webkit::forms::PasswordForm*>* forms) OVERRIDE;
|
| + std::vector<content::PasswordForm*>* forms) OVERRIDE;
|
| virtual bool FillBlacklistLogins(
|
| - std::vector<webkit::forms::PasswordForm*>* forms) OVERRIDE;
|
| + std::vector<content::PasswordForm*>* forms) OVERRIDE;
|
|
|
| // Adds the given form to the Keychain if it's something we want to store
|
| // there (i.e., not a blacklist entry). Returns true if the operation
|
| // succeeded (either we added successfully, or we didn't need to).
|
| - bool AddToKeychainIfNecessary(const webkit::forms::PasswordForm& form);
|
| + bool AddToKeychainIfNecessary(const content::PasswordForm& form);
|
|
|
| // Returns true if our database contains a form that exactly matches the given
|
| // keychain form.
|
| bool DatabaseHasFormMatchingKeychainForm(
|
| - const webkit::forms::PasswordForm& form);
|
| + const content::PasswordForm& form);
|
|
|
| // Returns all the Keychain entries that we own but no longer have
|
| // corresponding metadata for in our database.
|
| // Caller is responsible for deleting the forms.
|
| - std::vector<webkit::forms::PasswordForm*> GetUnusedKeychainForms();
|
| + std::vector<content::PasswordForm*> GetUnusedKeychainForms();
|
|
|
| // Removes the given forms from the database.
|
| void RemoveDatabaseForms(
|
| - const std::vector<webkit::forms::PasswordForm*>& forms);
|
| + const std::vector<content::PasswordForm*>& forms);
|
|
|
| // Removes the given forms from the Keychain.
|
| void RemoveKeychainForms(
|
| - const std::vector<webkit::forms::PasswordForm*>& forms);
|
| + const std::vector<content::PasswordForm*>& forms);
|
|
|
| // Allows the creation of |notification_service_| to be scheduled on the right
|
| // thread.
|
|
|