Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1153)

Unified Diff: Source/modules/credentialmanager/CredentialManagerClient.cpp

Issue 1160283002: Credential Management: Rename 'notifySignedOut' to 'requireUserMediation'. (1/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@rename-avatar
Patch Set: WebExposed. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/modules/credentialmanager/CredentialManagerClient.cpp
diff --git a/Source/modules/credentialmanager/CredentialManagerClient.cpp b/Source/modules/credentialmanager/CredentialManagerClient.cpp
index d2a8000a87690cbe0726a714a81ff1a20dc69413..cf1df43476ff5d98765a85fcef2217b8d291042d 100644
--- a/Source/modules/credentialmanager/CredentialManagerClient.cpp
+++ b/Source/modules/credentialmanager/CredentialManagerClient.cpp
@@ -65,10 +65,13 @@ void CredentialManagerClient::dispatchSignedIn(const WebCredential& credential,
m_client->dispatchSignedIn(credential, callbacks);
}
-void CredentialManagerClient::dispatchSignedOut(WebCredentialManagerClient::NotificationCallbacks* callbacks)
+void CredentialManagerClient::dispatchRequireUserMediation(WebCredentialManagerClient::NotificationCallbacks* callbacks)
{
if (!m_client)
return;
+ m_client->dispatchRequireUserMediation(callbacks);
+
+ // TODO(mkwst): Drop this once the Chromium side is updated. https://crbug.com/494880
m_client->dispatchSignedOut(callbacks);
}
« no previous file with comments | « Source/modules/credentialmanager/CredentialManagerClient.h ('k') | Source/modules/credentialmanager/CredentialsContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698