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/core/frame/Deprecation.cpp

Issue 2864493003: Deprecate CredentialRequestOptions.unmediated in favor mediation enum (Closed)
Patch Set: Fix Windows Compilation Error 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 270163347edb1ebdcff5f8027b86f5eb56708d52..66dd9d69e8a4c37f7ee25021aa107c229f023158 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -411,6 +411,12 @@ String Deprecation::DeprecationMessage(UseCounter::Feature feature) {
return willBeRemoved("SVGPathElement.getPathSegAtLength", M62,
"5638783282184192");
+ case UseCounter::kCredentialManagerCredentialRequestOptionsUnmediated:
+ return replacedWillBeRemoved(
+ "The boolean flag CredentialRequestOptions.unmediated",
+ "the CredentialRequestOptions.mediation enum", M62,
+ "5026422640869376");
+
// Features that aren't deprecated don't have a deprecation message.
default:
return String();

Powered by Google App Engine
This is Rietveld 408576698