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

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

Issue 2895243002: Rename requireUserMediation to preventSilentAccess in the CM API. (Closed)
Patch Set: merge Created 3 years, 7 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: 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 71dbf399fedd7ee24b1f9c5276a86c06517ae3a1..77da5b17e64256677a1e6ef01efada68f49f8afd 100644
--- a/third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.cpp
+++ b/third_party/WebKit/Source/modules/credentialmanager/CredentialManagerClient.cpp
@@ -63,11 +63,11 @@ void CredentialManagerClient::DispatchStore(
client_->DispatchStore(credential, callbacks);
}
-void CredentialManagerClient::DispatchRequireUserMediation(
+void CredentialManagerClient::DispatchPreventSilentAccess(
WebCredentialManagerClient::NotificationCallbacks* callbacks) {
if (!client_)
return;
- client_->DispatchRequireUserMediation(callbacks);
+ client_->DispatchPreventSilentAccess(callbacks);
}
void CredentialManagerClient::DispatchGet(

Powered by Google App Engine
This is Rietveld 408576698