| Index: webkit/api/src/WebMediaPlayerClientImpl.cpp
|
| diff --git a/webkit/api/src/WebMediaPlayerClientImpl.cpp b/webkit/api/src/WebMediaPlayerClientImpl.cpp
|
| index ca666e9ac23a5a439f6fac49aeb98069e21e2365..0451ad888c291f4507112913b141cb5dd9aec48a 100644
|
| --- a/webkit/api/src/WebMediaPlayerClientImpl.cpp
|
| +++ b/webkit/api/src/WebMediaPlayerClientImpl.cpp
|
| @@ -201,6 +201,20 @@ bool WebMediaPlayerClientImpl::paused() const
|
| return false;
|
| }
|
|
|
| +bool WebMediaPlayerClientImpl::supportsFullscreen() const
|
| +{
|
| + if (m_webMediaPlayer.get())
|
| + return m_webMediaPlayer->supportsFullscreen();
|
| + return false;
|
| +}
|
| +
|
| +bool WebMediaPlayerClientImpl::supportsSave() const
|
| +{
|
| + if (m_webMediaPlayer.get())
|
| + return m_webMediaPlayer->supportsSave();
|
| + return false;
|
| +}
|
| +
|
| void WebMediaPlayerClientImpl::setVolume(float volume)
|
| {
|
| if (m_webMediaPlayer.get())
|
|
|