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

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

Issue 2592263002: Merge "Add milestone to deprecation message for EME on insecure contexts" (Closed)
Patch Set: Created 4 years 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 5166ee99483f91d2e9ca69124357a7b046e1c3c2..e28c9536e8285ba58461dcd2aa8d2a72131262b6 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -351,10 +351,12 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) {
"details.";
case UseCounter::EncryptedMediaInsecureOrigin:
- return "requestMediaKeySystemAccess() is deprecated on insecure origins "
- "in the specification. Support will be removed in the future. You "
- "should consider switching your application to a secure origin, "
- "such as HTTPS. See https://goo.gl/rStTGz for more details.";
+ return String::format(
+ "Using requestMediaKeySystemAccess() on insecure origins is "
+ "deprecated and will be removed in %s. You should consider "
+ "switching your application to a secure origin, such as HTTPS. See "
+ "https://goo.gl/rStTGz for more details.",
+ milestoneString(M58));
case UseCounter::MediaSourceAbortRemove:
return "Using SourceBuffer.abort() to abort remove()'s asynchronous "
« no previous file with comments | « third_party/WebKit/LayoutTests/http/tests/security/powerfulFeatureRestrictions/old-powerful-features-on-insecure-origin-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698