| Index: third_party/WebKit/Source/modules/encryptedmedia/NavigatorRequestMediaKeySystemAccess.cpp
|
| diff --git a/third_party/WebKit/Source/modules/encryptedmedia/NavigatorRequestMediaKeySystemAccess.cpp b/third_party/WebKit/Source/modules/encryptedmedia/NavigatorRequestMediaKeySystemAccess.cpp
|
| index 8160ba42fa3110e03633224395df6f5309bde71f..f7d1e8d2a209a4d76c5f859fd27d9e64f23b096c 100644
|
| --- a/third_party/WebKit/Source/modules/encryptedmedia/NavigatorRequestMediaKeySystemAccess.cpp
|
| +++ b/third_party/WebKit/Source/modules/encryptedmedia/NavigatorRequestMediaKeySystemAccess.cpp
|
| @@ -51,7 +51,7 @@ static WebVector<WebMediaKeySystemMediaCapability> convertCapabilities(
|
| for (size_t i = 0; i < capabilities.size(); ++i) {
|
| const WebString& contentType = capabilities[i].contentType();
|
| result[i].contentType = contentType;
|
| - ParsedContentType type(contentType);
|
| + ParsedContentType type(contentType, ParsedContentType::Mode::Strict);
|
| if (type.isValid()) {
|
| // From
|
| // http://w3c.github.io/encrypted-media/#get-supported-capabilities-for-audio-video-type
|
|
|