| Index: chrome/browser/password_manager/password_form_manager.h
|
| diff --git a/chrome/browser/password_manager/password_form_manager.h b/chrome/browser/password_manager/password_form_manager.h
|
| index 584cc7bf32dd130c682ccac1b43a533f365f6c83..bb0fd68386e71182e99e2e97b84c6778f2d99308 100644
|
| --- a/chrome/browser/password_manager/password_form_manager.h
|
| +++ b/chrome/browser/password_manager/password_form_manager.h
|
| @@ -72,7 +72,8 @@ class PasswordFormManager : public PasswordStoreConsumer {
|
|
|
| // PasswordStoreConsumer implementation.
|
| virtual void OnPasswordStoreRequestDone(
|
| - int handle, const std::vector<webkit_glue::PasswordForm*>& result);
|
| + PasswordStore::Handle handle,
|
| + const std::vector<webkit_glue::PasswordForm*>& result);
|
|
|
| // A user opted to 'never remember' passwords for this form.
|
| // Blacklist it so that from now on when it is seen we ignore it.
|
| @@ -136,10 +137,6 @@ class PasswordFormManager : public PasswordStoreConsumer {
|
| static const int kMaxNumActionsTaken = kManagerActionMax * kUserActionMax *
|
| kSubmitResultMax;
|
|
|
| - // Called by destructor to ensure if this object is deleted, no potential
|
| - // outstanding callbacks can call OnPasswordStoreRequestDone.
|
| - void CancelLoginsQuery();
|
| -
|
| // Helper for OnPasswordStoreRequestDone to determine whether or not
|
| // the given result form is worth scoring.
|
| bool IgnoreResult(const webkit_glue::PasswordForm& form) const;
|
|
|