Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/dom/
DFullscreenElementStack.cpp129 m_fullScreenElement = 0; in documentWasDisposed()
334 document()->page()->chrome().client().exitFullScreenForElement(m_fullScreenElement.get()); in webkitExitFullscreen()
368 m_fullScreenElement = element; in webkitWillEnterFullScreenForElement()
374 RenderObject* renderer = m_fullScreenElement->renderer(); in webkitWillEnterFullScreenForElement()
381 if (m_fullScreenElement != document()->documentElement()) in webkitWillEnterFullScreenForElement()
384 m_fullScreenElement->setContainsFullScreenElementOnAncestorsCrossingFrameBoundaries(true); in webkitWillEnterFullScreenForElement()
391 if (!m_fullScreenElement) in webkitDidEnterFullScreenForElement()
397 m_fullScreenElement->didBecomeFullscreenElement(); in webkitDidEnterFullScreenForElement()
404 if (!m_fullScreenElement) in webkitWillExitFullScreenForElement()
410 m_fullScreenElement->willStopBeingFullscreenElement(); in webkitWillExitFullScreenForElement()
[all …]
DFullscreenElementStack.h93 bool webkitIsFullScreen() const { return m_fullScreenElement.get(); } in webkitIsFullScreen()
94 …bool webkitFullScreenKeyboardInputAllowed() const { return m_fullScreenElement.get() && m_areKeysE… in webkitFullScreenKeyboardInputAllowed()
95 Element* webkitCurrentFullScreenElement() const { return m_fullScreenElement.get(); } in webkitCurrentFullScreenElement()
109 RefPtr<Element> m_fullScreenElement; variable