| Index: third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
|
| index 19238e202abafbc7b784eeb35a907d71b8256ade..fb8bee62880a27bfc1ae427b6a31898015dedbbc 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
|
| @@ -263,9 +263,6 @@ WebMimeRegistry::SupportsType HTMLMediaElement::supportsType(const ContentType&
|
| {
|
| DEFINE_STATIC_LOCAL(const String, codecs, ("codecs"));
|
|
|
| - if (!RuntimeEnabledFeatures::mediaEnabled())
|
| - return WebMimeRegistry::IsNotSupported;
|
| -
|
| String type = contentType.type().lower();
|
| // The codecs string is not lower-cased because MP4 values are case sensitive
|
| // per http://tools.ietf.org/html/rfc4281#page-7.
|
| @@ -355,7 +352,6 @@ HTMLMediaElement::HTMLMediaElement(const QualifiedName& tagName, Document& docum
|
| #if ENABLE(OILPAN)
|
| ThreadState::current()->registerPreFinalizer(this);
|
| #endif
|
| - ASSERT(RuntimeEnabledFeatures::mediaEnabled());
|
|
|
| WTF_LOG(Media, "HTMLMediaElement::HTMLMediaElement(%p)", this);
|
|
|
|
|