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

Unified Diff: third_party/WebKit/Source/core/frame/Deprecation.cpp

Issue 2852423002: Expose passwords to JavaScript in Credential Manager API (Closed)
Patch Set: WPT Tests and Readonly Password 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 9f73ac902c2d80f9adb733a1707256d0fd1b9c18..90ff686e1338dd5e6c76068b0aaf2383d1ed4eff 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -432,6 +432,22 @@ String Deprecation::DeprecationMessage(UseCounter::Feature feature) {
return replacedBy("-webkit-repeating-radial-gradient",
"repeating-radial-gradient");
+ case UseCounter::kCredentialManagerIdName:
+ return willBeRemoved("PasswordCredential.idName", M62,
+ "5689327799500800");
+
+ case UseCounter::kCredentialManagerPasswordName:
+ return willBeRemoved("PasswordCredential.passwordName", M62,
+ "5689327799500800");
+
+ case UseCounter::kCredentialManagerAdditionalData:
+ return willBeRemoved("PasswordCredential.additionalData", M62,
+ "5689327799500800");
+
+ case UseCounter::kCredentialManagerCustomFetch:
+ return willBeRemoved("fetch.RequestInit.RequestCredentials.password", M62,
+ "5689327799500800");
+
// Features that aren't deprecated don't have a deprecation message.
default:
return String();

Powered by Google App Engine
This is Rietveld 408576698