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

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

Issue 2678433003: media: Require SecureContext for EME APIs (Closed)
Patch Set: rebase only Created 3 years, 10 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 cd5cf67b26823934f40ae231ccd26a6dd7555806..cbba6d4e70849d430e0535cec17ac58789b97de0 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -324,14 +324,6 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) {
"secure origin, such as HTTPS. See https://goo.gl/rStTGz for more "
"details.";
- case UseCounter::EncryptedMediaInsecureOrigin:
- 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 "
"range removal is deprecated due to specification change. Support "

Powered by Google App Engine
This is Rietveld 408576698