| Index: chrome/browser/password_manager/password_store.h
|
| diff --git a/chrome/browser/password_manager/password_store.h b/chrome/browser/password_manager/password_store.h
|
| index 1ac6f8bf9f17eec7f122b3d97beb8988e76a698a..32f9c81e4ca96bdc76c806a0e139e7af07c5c1fd 100644
|
| --- a/chrome/browser/password_manager/password_store.h
|
| +++ b/chrome/browser/password_manager/password_store.h
|
| @@ -140,7 +140,7 @@ class PasswordStore : public base::RefCountedThreadSafe<PasswordStore> {
|
| // Notifies the consumer that a Get*Logins() request is complete.
|
| virtual void NotifyConsumer(
|
| GetLoginsRequest* request,
|
| - const std::vector<webkit_glue::PasswordForm*> forms);
|
| + const std::vector<webkit_glue::PasswordForm*>& forms);
|
|
|
| private:
|
| // Called by NotifyConsumer, but runs in the consumer's thread. Will not
|
| @@ -148,7 +148,7 @@ class PasswordStore : public base::RefCountedThreadSafe<PasswordStore> {
|
| // that PasswordStoreConsumer doesn't have to be reference counted (we assume
|
| // consumers will cancel their requests before they are destroyed).
|
| void NotifyConsumerImpl(PasswordStoreConsumer* consumer, int handle,
|
| - const std::vector<webkit_glue::PasswordForm*> forms);
|
| + const std::vector<webkit_glue::PasswordForm*>& forms);
|
|
|
| // Returns a new request handle tracked in pending_requests_.
|
| int GetNewRequestHandle();
|
|
|