Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Unified Diff: Source/web/WebMediaPlayerClientImpl.cpp

Issue 291303003: Eliminate MediaPlayer & MediaPlayerClient abstractions (fullscreen apis) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/WebMediaPlayerClientImpl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebMediaPlayerClientImpl.cpp
diff --git a/Source/web/WebMediaPlayerClientImpl.cpp b/Source/web/WebMediaPlayerClientImpl.cpp
index 3e58a63e22a147f0978a14fa5545b615d77dab4d..ce4a9341a33b358954fe4897dfa37803f1a51bbc 100644
--- a/Source/web/WebMediaPlayerClientImpl.cpp
+++ b/Source/web/WebMediaPlayerClientImpl.cpp
@@ -217,23 +217,6 @@ void WebMediaPlayerClientImpl::pause()
m_webMediaPlayer->pause();
}
-void WebMediaPlayerClientImpl::showFullscreenOverlay()
-{
- if (m_webMediaPlayer)
- m_webMediaPlayer->enterFullscreen();
-}
-
-void WebMediaPlayerClientImpl::hideFullscreenOverlay()
-{
- if (m_webMediaPlayer)
- m_webMediaPlayer->exitFullscreen();
-}
-
-bool WebMediaPlayerClientImpl::canShowFullscreenOverlay() const
-{
- return m_webMediaPlayer && m_webMediaPlayer->canEnterFullscreen();
-}
-
double WebMediaPlayerClientImpl::duration() const
{
if (m_webMediaPlayer)
« no previous file with comments | « Source/web/WebMediaPlayerClientImpl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698