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

Unified Diff: chrome/browser/password_manager/password_store_mac.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_mac.h
diff --git a/chrome/browser/password_manager/password_store_mac.h b/chrome/browser/password_manager/password_store_mac.h
index 3a509efad965c2e2d87c822e8f44131bff444898..d7ccb04b069075fa62d050ad2ffee80fc1a2b43d 100644
--- a/chrome/browser/password_manager/password_store_mac.h
+++ b/chrome/browser/password_manager/password_store_mac.h
@@ -43,42 +43,44 @@ class PasswordStoreMac : public PasswordStore {
private:
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;
// 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_glue::PasswordForm& form);
+ bool AddToKeychainIfNecessary(const webkit::forms::PasswordForm& form);
// Returns true if our database contains a form that exactly matches the given
// keychain form.
bool DatabaseHasFormMatchingKeychainForm(
- const webkit_glue::PasswordForm& form);
+ const webkit::forms::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_glue::PasswordForm*> GetUnusedKeychainForms();
+ std::vector<webkit::forms::PasswordForm*> GetUnusedKeychainForms();
// Removes the given forms from the database.
void RemoveDatabaseForms(
- const std::vector<webkit_glue::PasswordForm*>& forms);
+ const std::vector<webkit::forms::PasswordForm*>& forms);
// Removes the given forms from the Keychain.
void RemoveKeychainForms(
- const std::vector<webkit_glue::PasswordForm*>& forms);
+ const std::vector<webkit::forms::PasswordForm*>& forms);
// Allows the creation of |notification_service_| to be scheduled on the right
// thread.

Powered by Google App Engine
This is Rietveld 408576698