Home
last modified time | relevance | path

Searched refs:videoElement (Results 1 – 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DRenderVideo.cpp76 if (videoElement()->shouldDisplayPosterImage()) in intrinsicSizeChanged()
100 HTMLVideoElement* video = videoElement(); in calculateIntrinsicSize()
141 if (videoElement()->shouldDisplayPosterImage()) in imageChanged()
151 if (m_cachedImageSize.isEmpty() && videoElement()->shouldDisplayPosterImage()) in videoBox()
155 if (videoElement()->shouldDisplayPosterImage()) in videoBox()
184 return !videoElement()->shouldDisplayPosterImage(); in shouldDisplayVideo()
190 bool displayingPoster = videoElement()->shouldDisplayPosterImage(); in paintReplaced()
217 HTMLVideoElement* RenderVideo::videoElement() const in videoElement() function in WebCore::RenderVideo
237 if (!videoElement()->inActiveDocument()) { in updatePlayer()
DRenderVideo.h56 inline HTMLVideoElement* videoElement() const;
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DFullScreenVideoQt.cpp170 HTMLVideoElement* videoElement = static_cast<HTMLVideoElement*>(node); in enterFullScreenForNode() local
171 PlatformMedia platformMedia = videoElement->platformMedia(); in enterFullScreenForNode()
196 HTMLVideoElement* videoElement = static_cast<HTMLVideoElement*>(node); in exitFullScreenForNode() local
197 PlatformMedia platformMedia = videoElement->platformMedia(); in exitFullScreenForNode()
DDumpRenderTreeSupportQt.cpp1042 HTMLVideoElement* videoElement = static_cast<HTMLVideoElement*>(coreNode); in mediaContentUrlByElementId() local
1043 PlatformMedia platformMedia = videoElement->platformMedia(); in mediaContentUrlByElementId()
/external/webkit/Source/WebCore/html/
DMediaDocument.cpp204 if (HTMLVideoElement* videoElement = descendentVideoElement(htmlBody)) { in replaceMediaElementTimerFired() local
219 videoElement->parentNode()->replaceChild(embedElement, videoElement, ec); in replaceMediaElementTimerFired()
/external/webkit/Source/WebKit/android/WebCoreSupport/
DChromeClientAndroid.cpp586 HTMLMediaElement* videoElement = static_cast<HTMLMediaElement*>(node); in enterFullscreenForNode() local
593 MediaPlayer* player = videoElement->player(); in enterFullscreenForNode()
599 doc->webkitWillEnterFullScreenForElement(videoElement); in enterFullscreenForNode()
622 HTMLMediaElement* videoElement = static_cast<HTMLMediaElement*>(element); in exitFullScreenForElement() local
623 videoElement->exitFullscreen(); in exitFullScreenForElement()
/external/webkit/Source/WebCore/accessibility/
DAccessibilityMediaControls.cpp250 DEFINE_STATIC_LOCAL(const String, videoElement, ("VideoElement")); in elementTypeName()
254 return videoElement; in elementTypeName()
/external/webkit/Source/WebKit/win/
DWebView.cpp5983 HTMLMediaElement* videoElement = static_cast<HTMLMediaElement*>(node); in enterFullscreenForNode() local
5986 if (m_fullscreenController->mediaElement() == videoElement) { in enterFullscreenForNode()
5989 m_fullscreenController->setMediaElement(videoElement); in enterFullscreenForNode()
6001 m_fullscreenController->setMediaElement(videoElement); in enterFullscreenForNode()
/external/webkit/Source/WebKit/mac/WebView/
DWebView.mm6170 HTMLMediaElement* videoElement = static_cast<HTMLMediaElement*>(node);
6173 if ([_private->fullscreenController mediaElement] == videoElement) {
6176 [_private->fullscreenController setMediaElement:videoElement];
6188 [_private->fullscreenController setMediaElement:videoElement];
6192 [_private->fullscreenController setMediaElement:videoElement];
/external/webkit/Source/WebKit/gtk/webkit/
Dwebkitwebview.cpp5115 HTMLMediaElement* videoElement = static_cast<HTMLMediaElement*>(node); in webViewEnterFullscreen() local
5123 priv->fullscreenVideoController->setMediaElement(videoElement); in webViewEnterFullscreen()
/external/webkit/Source/WebCore/
DChangeLog-2010-01-2912217 (WebCore::RenderVideo::videoElement): New.