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

Unified Diff: third_party/WebKit/Source/core/frame/Deprecation.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/core/frame/Deprecation.cpp
diff --git a/third_party/WebKit/Source/core/frame/Deprecation.cpp b/third_party/WebKit/Source/core/frame/Deprecation.cpp
index 4ec81a37ce822308b14ecad188d1a6a0d56ba741..1a8b2426ca216b60e1dadc99966c439d78e4e900 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -430,7 +430,6 @@ String Deprecation::DeprecationMessage(UseCounter::Feature feature) {
"details and https://www.chromium.org/developers/"
"recent-changes-credential-management-api for migration suggestions.",
milestoneString(M62));
-
case UseCounter::kPaymentRequestNetworkNameInSupportedMethods:
return replacedWillBeRemoved(
"Card issuer network (\"amex\", \"diners\", \"discover\", \"jcb\", "
@@ -438,6 +437,11 @@ String Deprecation::DeprecationMessage(UseCounter::Feature feature) {
"payment method name \"basic-card\" with issuer network in the "
"\"supportedNetworks\" field",
M64, "5725727580225536");
+ case UseCounter::kCredentialManagerRequireUserMediation:
+ return replacedWillBeRemoved(
+ "The CredentialsContainer.requireUserMediation method",
+ "the CredentialsContainer.preventSilentAccess method", M62,
+ "4781762488041472");
// Features that aren't deprecated don't have a deprecation message.
default:

Powered by Google App Engine
This is Rietveld 408576698