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

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

Issue 2864493003: Deprecate CredentialRequestOptions.unmediated in favor mediation enum (Closed)
Patch Set: Rebase 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 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

Powered by Google App Engine
This is Rietveld 408576698