| Index: third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.cpp
|
| diff --git a/third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.cpp b/third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.cpp
|
| index cf463ff3c52b242e1f75bc8bda88aa16669a9ec4..71dbf399fedd7ee24b1f9c5276a86c06517ae3a1 100644
|
| --- a/third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.cpp
|
| +++ b/third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.cpp
|
| @@ -71,14 +71,13 @@ void CredentialManagerClient::DispatchRequireUserMediation(
|
| }
|
|
|
| void CredentialManagerClient::DispatchGet(
|
| - bool zero_click_only,
|
| + WebCredentialMediationRequirement mediation,
|
| bool include_passwords,
|
| const WebVector<WebURL>& federations,
|
| WebCredentialManagerClient::RequestCallbacks* callbacks) {
|
| if (!client_)
|
| return;
|
| - client_->DispatchGet(zero_click_only, include_passwords, federations,
|
| - callbacks);
|
| + client_->DispatchGet(mediation, include_passwords, federations, callbacks);
|
| }
|
|
|
| } // namespace blink
|
|
|