| Index: sky/engine/platform/MIMETypeRegistry.cpp
|
| diff --git a/sky/engine/platform/MIMETypeRegistry.cpp b/sky/engine/platform/MIMETypeRegistry.cpp
|
| index 8b697467c020e7473de1114062f5826bbd57cb79..5335b0187289bb90cdc25ade66747c0b13835e6d 100644
|
| --- a/sky/engine/platform/MIMETypeRegistry.cpp
|
| +++ b/sky/engine/platform/MIMETypeRegistry.cpp
|
| @@ -98,16 +98,4 @@ bool MIMETypeRegistry::isSupportedNonImageMIMEType(const String& mimeType)
|
| != blink::WebMimeRegistry::IsNotSupported;
|
| }
|
|
|
| -bool MIMETypeRegistry::isSupportedMediaSourceMIMEType(const String& mimeType, const String& codecs)
|
| -{
|
| - return !mimeType.isEmpty()
|
| - && blink::Platform::current()->mimeRegistry()->supportsMediaSourceMIMEType(mimeType.lower(), codecs);
|
| -}
|
| -
|
| -bool MIMETypeRegistry::isSupportedEncryptedMediaMIMEType(const String& keySystem, const String& mimeType, const String& codecs)
|
| -{
|
| - // Key system names are case-sensitive!
|
| - return blink::Platform::current()->mimeRegistry()->supportsEncryptedMediaMIMEType(keySystem, mimeType.lower(), codecs);
|
| -}
|
| -
|
| } // namespace blink
|
|
|