| Index: Source/modules/credentialmanager/CredentialsContainer.cpp
|
| diff --git a/Source/modules/credentialmanager/CredentialsContainer.cpp b/Source/modules/credentialmanager/CredentialsContainer.cpp
|
| index 5ebd2614c64d439ca3ee094e993dcd336a7d1728..ac7669815d4746e2761e2d14964b8247ffb10320 100644
|
| --- a/Source/modules/credentialmanager/CredentialsContainer.cpp
|
| +++ b/Source/modules/credentialmanager/CredentialsContainer.cpp
|
| @@ -148,14 +148,14 @@ ScriptPromise CredentialsContainer::notifyFailedSignIn(ScriptState* scriptState,
|
| return promise;
|
| }
|
|
|
| -ScriptPromise CredentialsContainer::notifySignedOut(ScriptState* scriptState)
|
| +ScriptPromise CredentialsContainer::requireUserMediation(ScriptState* scriptState)
|
| {
|
| RefPtrWillBeRawPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(scriptState);
|
| ScriptPromise promise = resolver->promise();
|
| if (!checkBoilerplate(resolver))
|
| return promise;
|
|
|
| - CredentialManagerClient::from(scriptState->executionContext())->dispatchSignedOut(new NotificationCallbacks(resolver));
|
| + CredentialManagerClient::from(scriptState->executionContext())->dispatchRequireUserMediation(new NotificationCallbacks(resolver));
|
| return promise;
|
| }
|
|
|
|
|