| Index: components/password_manager/content/renderer/credential_manager_client.cc
|
| diff --git a/components/password_manager/content/renderer/credential_manager_client.cc b/components/password_manager/content/renderer/credential_manager_client.cc
|
| index 7185096ee3c85d54d71a8de6252c72670aa5cb86..9485ed1f4e7fe711d692a57cfd8a0b840f294d93 100644
|
| --- a/components/password_manager/content/renderer/credential_manager_client.cc
|
| +++ b/components/password_manager/content/renderer/credential_manager_client.cc
|
| @@ -4,8 +4,9 @@
|
|
|
| #include "components/password_manager/content/renderer/credential_manager_client.h"
|
|
|
| +#include "components/password_manager/content/common/credential_manager_content_utils.h"
|
| #include "components/password_manager/content/common/credential_manager_messages.h"
|
| -#include "components/password_manager/content/common/credential_manager_types.h"
|
| +#include "components/password_manager/core/common/credential_manager_types.h"
|
| #include "content/public/renderer/render_view.h"
|
| #include "third_party/WebKit/public/platform/WebCredential.h"
|
| #include "third_party/WebKit/public/platform/WebCredentialManagerError.h"
|
| @@ -116,7 +117,7 @@ void CredentialManagerClient::dispatchFailedSignIn(
|
| const blink::WebCredential& credential,
|
| blink::WebCredentialManagerClient::NotificationCallbacks* callbacks) {
|
| int request_id = failed_sign_in_callbacks_.Add(callbacks);
|
| - CredentialInfo info(credential);
|
| + CredentialInfo info(WebCredentialToCredentialInfo(credential));
|
| Send(new CredentialManagerHostMsg_NotifyFailedSignIn(
|
| routing_id(), request_id, info));
|
| }
|
| @@ -125,7 +126,7 @@ void CredentialManagerClient::dispatchSignedIn(
|
| const blink::WebCredential& credential,
|
| blink::WebCredentialManagerClient::NotificationCallbacks* callbacks) {
|
| int request_id = signed_in_callbacks_.Add(callbacks);
|
| - CredentialInfo info(credential);
|
| + CredentialInfo info(WebCredentialToCredentialInfo(credential));
|
| Send(new CredentialManagerHostMsg_NotifySignedIn(
|
| routing_id(), request_id, info));
|
| }
|
|
|