| Index: components/password_manager/core/browser/password_manager_client.h
|
| diff --git a/components/password_manager/core/browser/password_manager_client.h b/components/password_manager/core/browser/password_manager_client.h
|
| index c9c5549aec0d73f413d809425f2d807c1660371c..46485f61e97636cad7048202badd3a751a65582c 100644
|
| --- a/components/password_manager/core/browser/password_manager_client.h
|
| +++ b/components/password_manager/core/browser/password_manager_client.h
|
| @@ -105,11 +105,12 @@ class PasswordManagerClient {
|
| virtual void GeneratePassword();
|
|
|
| // Informs the embedder that automatic signing in just happened. The form
|
| - // returned to the site is |local_forms[0]|. |local_forms| and
|
| - // |federated_forms| contain all the local and federated credentials for the
|
| - // site.
|
| + // returned to the site is |local_forms[0]|. |local_forms| contains all the
|
| + // local credentials for the site. |origin| is a URL of the site the user was
|
| + // auto signed in to.
|
| virtual void NotifyUserAutoSignin(
|
| - ScopedVector<autofill::PasswordForm> local_forms) = 0;
|
| + ScopedVector<autofill::PasswordForm> local_forms,
|
| + const GURL& origin) = 0;
|
|
|
| // Inform the embedder that automatic signin would have happened if the user
|
| // had been through the first-run experience to ensure their opt-in. |form|
|
|
|