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

Side by Side Diff: Source/core/html/HTMLVideoElement.h

Issue 1297983002: Update poster code as per https://html.spec.whatwg.org/#show-poster-flag (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: clean up Created 5 years, 2 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 unified diff | Download patch
« no previous file with comments | « Source/core/html/HTMLMediaElement.cpp ('k') | Source/core/html/HTMLVideoElement.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 // Statistics 64 // Statistics
65 unsigned webkitDecodedFrameCount() const; 65 unsigned webkitDecodedFrameCount() const;
66 unsigned webkitDroppedFrameCount() const; 66 unsigned webkitDroppedFrameCount() const;
67 67
68 // Used by canvas to gain raw pixel access 68 // Used by canvas to gain raw pixel access
69 void paintCurrentFrame(SkCanvas*, const IntRect&, const SkPaint*) const; 69 void paintCurrentFrame(SkCanvas*, const IntRect&, const SkPaint*) const;
70 70
71 // Used by WebGL to do GPU-GPU textures copy if possible. 71 // Used by WebGL to do GPU-GPU textures copy if possible.
72 bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, Platform3DObje ct texture, GLenum internalFormat, GLenum type, bool premultiplyAlpha, bool flip Y); 72 bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, Platform3DObje ct texture, GLenum internalFormat, GLenum type, bool premultiplyAlpha, bool flip Y);
73 73
74 bool shouldDisplayPosterImage() const { return displayMode() == Poster; } 74 bool shouldDisplayPosterImage() const { return m_showPoster; }
75 75
76 bool hasAvailableVideoFrame() const; 76 bool hasAvailableVideoFrame() const;
77 77
78 KURL posterImageURL() const override; 78 KURL posterImageURL() const override;
79 79
80 // CanvasImageSource implementation 80 // CanvasImageSource implementation
81 PassRefPtr<Image> getSourceImageForCanvas(SourceImageStatus*) const override ; 81 PassRefPtr<Image> getSourceImageForCanvas(SourceImageStatus*) const override ;
82 bool isVideoElement() const override { return true; } 82 bool isVideoElement() const override { return true; }
83 bool wouldTaintOrigin(SecurityOrigin*) const override; 83 bool wouldTaintOrigin(SecurityOrigin*) const override;
84 FloatSize elementSize() const override; 84 FloatSize elementSize() const override;
85 const KURL& sourceURL() const override { return currentSrc(); } 85 const KURL& sourceURL() const override { return currentSrc(); }
86 86
87 bool isHTMLVideoElement() const override { return true; } 87 bool isHTMLVideoElement() const override { return true; }
88 88
89 private: 89 private:
90 HTMLVideoElement(Document&); 90 HTMLVideoElement(Document&);
91 91
92 bool layoutObjectIsNeeded(const ComputedStyle&) override; 92 bool layoutObjectIsNeeded(const ComputedStyle&) override;
93 LayoutObject* createLayoutObject(const ComputedStyle&) override; 93 LayoutObject* createLayoutObject(const ComputedStyle&) override;
94 void attach(const AttachContext& = AttachContext()) override; 94 void attach(const AttachContext& = AttachContext()) override;
95 void parseAttribute(const QualifiedName&, const AtomicString&) override; 95 void parseAttribute(const QualifiedName&, const AtomicString&) override;
96 bool isPresentationAttribute(const QualifiedName&) const override; 96 bool isPresentationAttribute(const QualifiedName&) const override;
97 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic String&, MutableStylePropertySet*) override; 97 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic String&, MutableStylePropertySet*) override;
98 bool hasVideo() const override { return webMediaPlayer() && webMediaPlayer() ->hasVideo(); } 98 bool hasVideo() const override { return webMediaPlayer() && webMediaPlayer() ->hasVideo(); }
99 bool isURLAttribute(const Attribute&) const override; 99 bool isURLAttribute(const Attribute&) const override;
100 const AtomicString imageSourceURL() const override; 100 const AtomicString imageSourceURL() const override;
101 101
102 void updateDisplayState() override; 102 void updateDisplayState(bool forceUpdate) override;
103 void didMoveToNewDocument(Document& oldDocument) override; 103 void didMoveToNewDocument(Document& oldDocument) override;
104 void setDisplayMode(DisplayMode) override; 104 void setShowPoster(bool) override;
105 105
106 // whether to show poster or video frame
107 bool m_showPoster : 1;
106 OwnPtrWillBeMember<HTMLImageLoader> m_imageLoader; 108 OwnPtrWillBeMember<HTMLImageLoader> m_imageLoader;
107 109
108 AtomicString m_defaultPosterURL; 110 AtomicString m_defaultPosterURL;
109 }; 111 };
110 112
111 } // namespace blink 113 } // namespace blink
112 114
113 #endif // HTMLVideoElement_h 115 #endif // HTMLVideoElement_h
OLDNEW
« no previous file with comments | « Source/core/html/HTMLMediaElement.cpp ('k') | Source/core/html/HTMLVideoElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698