| Index: Source/WebKit/chromium/src/WebMediaPlayerClientImpl.cpp
|
| diff --git a/Source/WebKit/chromium/src/WebMediaPlayerClientImpl.cpp b/Source/WebKit/chromium/src/WebMediaPlayerClientImpl.cpp
|
| index 1160a423ae5c93edd2a178c9a9a38abeb65eabdf..00d2a2a0b87f5bd9d5f9d07f55845e4198b9982b 100644
|
| --- a/Source/WebKit/chromium/src/WebMediaPlayerClientImpl.cpp
|
| +++ b/Source/WebKit/chromium/src/WebMediaPlayerClientImpl.cpp
|
| @@ -79,12 +79,7 @@ void WebMediaPlayerClientImpl::setIsEnabled(bool isEnabled)
|
| void WebMediaPlayerClientImpl::registerSelf(MediaEngineRegistrar registrar)
|
| {
|
| if (m_isEnabled) {
|
| - registrar(WebMediaPlayerClientImpl::create,
|
| - WebMediaPlayerClientImpl::getSupportedTypes,
|
| - WebMediaPlayerClientImpl::supportsType,
|
| - 0,
|
| - 0,
|
| - 0);
|
| + registrar(WebMediaPlayerClientImpl::create, WebMediaPlayerClientImpl::supportsType);
|
| }
|
| }
|
|
|
| @@ -730,12 +725,6 @@ PassOwnPtr<MediaPlayerPrivateInterface> WebMediaPlayerClientImpl::create(MediaPl
|
| return client.release();
|
| }
|
|
|
| -void WebMediaPlayerClientImpl::getSupportedTypes(HashSet<String>& supportedTypes)
|
| -{
|
| - // FIXME: integrate this list with WebMediaPlayerClientImpl::supportsType.
|
| - notImplemented();
|
| -}
|
| -
|
| #if ENABLE(ENCRYPTED_MEDIA)
|
| MediaPlayer::SupportsType WebMediaPlayerClientImpl::supportsType(const String& type,
|
| const String& codecs,
|
|
|