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 cae78f38dc7fa759e72b67c5957400602b02d4a6..26f8c70d90a3ae592a9ff2ec364a84ae7264e33a 100644 |
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp |
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp |
@@ -304,6 +304,11 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) |
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."; |
+ case UseCounter::MediaSourceAbortRemove: |
+ return "Using SourceBuffer.abort() to abort remove()'s asynchronous range removal is deprecated due to specification change. Support will be removed in the future. You should instead await 'updateend'. abort() is intended to only abort an asynchronous media append or reset parser state. See https://www.chromestatus.com/features/6107495151960064 for more details."; |
+ case UseCounter::MediaSourceDurationTruncatingBuffered: |
+ return "Setting MediaSource.duration below the highest presentation timestamp of any buffered coded frames is deprecated due to specification change. Support for implicit removal of truncated buffered media will be removed in the future. You should instead perform explicit remove(newDuration, oldDuration) on all sourceBuffers, where newDuration < oldDuration. See https://www.chromestatus.com/features/6107495151960064 for more details."; |
+ |
case UseCounter::ApplicationCacheManifestSelectInsecureOrigin: |
case UseCounter::ApplicationCacheAPIInsecureOrigin: |
return "Use of the Application Cache is deprecated on insecure origins. 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."; |