Home
last modified time | relevance | path

Searched refs:m_fullscreenController (Results 1 – 2 of 2) sorted by relevance

/external/webkit/WebKit/win/
DWebView.cpp5791 if (m_fullscreenController) { in enterFullscreenForNode()
5792 if (m_fullscreenController->mediaElement() == videoElement) { in enterFullscreenForNode()
5795 m_fullscreenController->setMediaElement(videoElement); in enterFullscreenForNode()
5800 m_fullscreenController->mediaElement()->exitFullscreen(); in enterFullscreenForNode()
5803 ASSERT(!m_fullscreenController); in enterFullscreenForNode()
5806 m_fullscreenController = new FullscreenVideoController; in enterFullscreenForNode()
5807 m_fullscreenController->setMediaElement(videoElement); in enterFullscreenForNode()
5808 m_fullscreenController->enterFullscreen(); in enterFullscreenForNode()
5815 if (m_fullscreenController) in exitFullscreen()
5816 m_fullscreenController->exitFullscreen(); in exitFullscreen()
[all …]
DWebView.h1004 OwnPtr<FullscreenVideoController> m_fullscreenController; variable