video 57 Source/core/frame/ImageBitmap.cpp ImageBitmap::ImageBitmap(HTMLVideoElement* video, const IntRect& cropRect) video 62 Source/core/frame/ImageBitmap.cpp IntRect videoRect = IntRect(IntPoint(), video->player()->naturalSize()); video 72 Source/core/frame/ImageBitmap.cpp video->paintCurrentFrameInContext(c, videoRect); video 158 Source/core/frame/ImageBitmap.cpp PassRefPtrWillBeRawPtr<ImageBitmap> ImageBitmap::create(HTMLVideoElement* video, const IntRect& cropRect) video 161 Source/core/frame/ImageBitmap.cpp return adoptRefWillBeNoop(new ImageBitmap(video, normalizedCropRect)); video 138 Source/core/html/MediaDocument.cpp HTMLVideoElement* video = Traversal<HTMLVideoElement>::firstWithin(*targetNode); video 139 Source/core/html/MediaDocument.cpp if (!video) video 145 Source/core/html/MediaDocument.cpp video->togglePlayState(); video 1588 Source/core/html/canvas/CanvasRenderingContext2D.cpp void CanvasRenderingContext2D::drawVideo(HTMLVideoElement* video, FloatRect srcRect, FloatRect dstRect) video 1596 Source/core/html/canvas/CanvasRenderingContext2D.cpp video->paintCurrentFrameInContext(c, IntRect(IntPoint(), IntSize(video->videoWidth(), video->videoHeight()))); video 3468 Source/core/html/canvas/WebGLRenderingContextBase.cpp PassRefPtr<Image> WebGLRenderingContextBase::videoFrameToImage(HTMLVideoElement* video, BackingStoreCopy backingStoreCopy) video 3470 Source/core/html/canvas/WebGLRenderingContextBase.cpp IntSize size(video->videoWidth(), video->videoHeight()); video 3478 Source/core/html/canvas/WebGLRenderingContextBase.cpp video->paintCurrentFrameInContext(buf->context(), destRect); video 3483 Source/core/html/canvas/WebGLRenderingContextBase.cpp GLenum format, GLenum type, HTMLVideoElement* video, ExceptionState& exceptionState) video 3485 Source/core/html/canvas/WebGLRenderingContextBase.cpp if (isContextLost() || !validateHTMLVideoElement("texImage2D", video, exceptionState) video 3486 Source/core/html/canvas/WebGLRenderingContextBase.cpp || !validateTexFunc("texImage2D", NotTexSubImage2D, SourceHTMLVideoElement, target, level, internalformat, video->videoWidth(), video->videoHeight(), 0, format, type, 0, 0)) video 3493 Source/core/html/canvas/WebGLRenderingContextBase.cpp if (video->copyVideoTextureToPlatformTexture(m_context.get(), texture->object(), level, type, internalformat, m_unpackPremultiplyAlpha, m_unpackFlipY)) { video 3494 Source/core/html/canvas/WebGLRenderingContextBase.cpp texture->setLevelInfo(target, level, internalformat, video->videoWidth(), video->videoHeight(), type); video 3500 Source/core/html/canvas/WebGLRenderingContextBase.cpp RefPtr<Image> image = videoFrameToImage(video, ImageBuffer::fastCopyImageMode()); video 3688 Source/core/html/canvas/WebGLRenderingContextBase.cpp GLenum format, GLenum type, HTMLVideoElement* video, ExceptionState& exceptionState) video 3690 Source/core/html/canvas/WebGLRenderingContextBase.cpp if (isContextLost() || !validateHTMLVideoElement("texSubImage2D", video, exceptionState) video 3691 Source/core/html/canvas/WebGLRenderingContextBase.cpp || !validateTexFunc("texSubImage2D", TexSubImage2D, SourceHTMLVideoElement, target, level, format, video->videoWidth(), video->videoHeight(), 0, format, type, xoffset, yoffset)) video 3694 Source/core/html/canvas/WebGLRenderingContextBase.cpp RefPtr<Image> image = videoFrameToImage(video, ImageBuffer::fastCopyImageMode()); video 5149 Source/core/html/canvas/WebGLRenderingContextBase.cpp bool WebGLRenderingContextBase::validateHTMLVideoElement(const char* functionName, HTMLVideoElement* video, ExceptionState& exceptionState) video 5151 Source/core/html/canvas/WebGLRenderingContextBase.cpp if (!video || !video->videoWidth() || !video->videoHeight()) { video 5155 Source/core/html/canvas/WebGLRenderingContextBase.cpp if (video->wouldTaintOrigin(canvas()->securityOrigin())) { video 595 Source/core/html/shadow/MediaControlElements.cpp HTMLVideoElement& video = toHTMLVideoElement(mediaElement()); video 619 Source/core/html/shadow/MediaControlElements.cpp CueList activeCues = video.currentlyActiveCues(); video 36 Source/core/rendering/RenderMedia.cpp RenderMedia::RenderMedia(HTMLMediaElement* video) video 37 Source/core/rendering/RenderMedia.cpp : RenderImage(video) video 45 Source/core/rendering/RenderVideo.cpp RenderVideo::RenderVideo(HTMLVideoElement* video) video 46 Source/core/rendering/RenderVideo.cpp : RenderMedia(video) video 90 Source/core/rendering/RenderVideo.cpp HTMLVideoElement* video = videoElement(); video 102 Source/core/rendering/RenderVideo.cpp if (player && video->readyState() >= HTMLVideoElement::HAVE_METADATA) { video 108 Source/core/rendering/RenderVideo.cpp if (video->shouldDisplayPosterImage() && !m_cachedImageSize.isEmpty() && !imageResource()->errorOccurred()) video 115 Source/core/rendering/RenderVideo.cpp if (video->ownerDocument() && video->ownerDocument()->isMediaDocument()) video 540 Source/core/rendering/compositing/RenderLayerCompositor.cpp RenderVideo* video = findFullscreenVideoRenderer(m_renderView.document()); video 541 Source/core/rendering/compositing/RenderLayerCompositor.cpp if (video && video->hasCompositedLayerMapping()) { video 543 Source/core/rendering/compositing/RenderLayerCompositor.cpp childList.append(video->compositedLayerMapping()->mainGraphicsLayer()); video 59 Source/modules/imagebitmap/ImageBitmapFactories.cpp static IntSize sizeFor(HTMLVideoElement* video) video 61 Source/modules/imagebitmap/ImageBitmapFactories.cpp if (MediaPlayer* player = video->player()) video 117 Source/modules/imagebitmap/ImageBitmapFactories.cpp ScriptPromise ImageBitmapFactories::createImageBitmap(EventTarget& eventTarget, HTMLVideoElement* video, ExceptionState& exceptionState) video 119 Source/modules/imagebitmap/ImageBitmapFactories.cpp IntSize s = sizeFor(video); video 120 Source/modules/imagebitmap/ImageBitmapFactories.cpp return createImageBitmap(eventTarget, video, 0, 0, s.width(), s.height(), exceptionState); video 123 Source/modules/imagebitmap/ImageBitmapFactories.cpp ScriptPromise ImageBitmapFactories::createImageBitmap(EventTarget& eventTarget, HTMLVideoElement* video, int sx, int sy, int sw, int sh, ExceptionState& exceptionState) video 128 Source/modules/imagebitmap/ImageBitmapFactories.cpp if (!video) { video 132 Source/modules/imagebitmap/ImageBitmapFactories.cpp if (!video->player()) { video 136 Source/modules/imagebitmap/ImageBitmapFactories.cpp if (video->networkState() == HTMLMediaElement::NETWORK_EMPTY) { video 140 Source/modules/imagebitmap/ImageBitmapFactories.cpp if (video->player()->readyState() <= MediaPlayer::HaveMetadata) { video 148 Source/modules/imagebitmap/ImageBitmapFactories.cpp if (!video->hasSingleSecurityOrigin()) { video 152 Source/modules/imagebitmap/ImageBitmapFactories.cpp if (!video->player()->didPassCORSAccessCheck() && eventTarget.toDOMWindow()->document()->securityOrigin()->taintsCanvas(video->currentSrc())) { video 157 Source/modules/imagebitmap/ImageBitmapFactories.cpp return fulfillImageBitmap(eventTarget.executionContext(), ImageBitmap::create(video, IntRect(sx, sy, sw, sh))); video 74 Source/modules/mediastream/UserMediaRequest.cpp blink::WebMediaConstraints video = parseOptions(options, "video", exceptionState); video 78 Source/modules/mediastream/UserMediaRequest.cpp if (audio.isNull() && video.isNull()) { video 83 Source/modules/mediastream/UserMediaRequest.cpp return adoptRef(new UserMediaRequest(context, controller, audio, video, successCallback, errorCallback)); video 86 Source/modules/mediastream/UserMediaRequest.cpp UserMediaRequest::UserMediaRequest(ExecutionContext* context, UserMediaController* controller, blink::WebMediaConstraints audio, blink::WebMediaConstraints video, PassOwnPtr<NavigatorUserMediaSuccessCallback> successCallback, PassOwnPtr<NavigatorUserMediaErrorCallback> errorCallback) video 89 Source/modules/mediastream/UserMediaRequest.cpp , m_video(video) video 68 Source/modules/mediastream/UserMediaRequest.h bool video() const; video 76 Source/modules/mediastream/UserMediaRequest.h UserMediaRequest(ExecutionContext*, UserMediaController*, blink::WebMediaConstraints audio, blink::WebMediaConstraints video, PassOwnPtr<NavigatorUserMediaSuccessCallback>, PassOwnPtr<NavigatorUserMediaErrorCallback>); video 144 Source/platform/exported/WebMediaStream.cpp MediaStreamComponentVector audio, video; video 151 Source/platform/exported/WebMediaStream.cpp video.append(component); video 153 Source/platform/exported/WebMediaStream.cpp m_private = MediaStreamDescriptor::create(label, audio, video); video 77 Source/web/WebUserMediaRequest.cpp return m_private->video(); video 68 public/web/WebUserMediaRequest.h BLINK_EXPORT bool video() const;