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 9a3def4c1f871e2f73a635babb7ee67c40c38a90..9a1de255c206224a548ea2e082f19fcb05d0d45d 100644 |
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp |
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp |
@@ -346,6 +346,9 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) |
case UseCounter::EncryptedMediaAllSelectedContentTypesMissingCodecs: |
return String::format("EME requires that contentType strings accepted by requestMediaKeySystemAccess() include codecs. Non-standard support for contentType strings without codecs will be removed in %s. Please specify the desired codec(s) as part of the contentType.", milestoneString(56)); |
+ case UseCounter::EncryptedMediaCapabilityNotProvided: |
+ return String::format("EME requires that one of 'audioCapabilities' and 'videoCapabilities' must be non-empty. Non-standard support for this will be removed in %s. Please specify at least one valid capability for 'audioCapabilities' or 'videoCapabilities' .", milestoneString(56)); |
ddorwin
2016/09/16 23:07:25
extra space before period
jrummell
2016/09/17 00:15:05
Done.
|
+ |
case UseCounter::UntrustedEventDefaultHandled: |
return String::format("A DOM event generated from JavaScript has triggered a default action inside the browser. This behavior is non-standard and will be removed in %s. See https://www.chromestatus.com/features/5718803933560832 for more details.", milestoneString(53)); |