summaryrefslogtreecommitdiffstats
path: root/webkit/media/webvideoframe_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/media/webvideoframe_impl.h')
-rw-r--r--webkit/media/webvideoframe_impl.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/webkit/media/webvideoframe_impl.h b/webkit/media/webvideoframe_impl.h
index f82c4d7..72e81a5 100644
--- a/webkit/media/webvideoframe_impl.h
+++ b/webkit/media/webvideoframe_impl.h
@@ -19,12 +19,13 @@ class WebVideoFrameImpl : public WebKit::WebVideoFrame {
WebVideoFrameImpl(scoped_refptr<media::VideoFrame> video_frame);
virtual ~WebVideoFrameImpl();
- virtual WebVideoFrame::Format format() const OVERRIDE;
- virtual unsigned width() const OVERRIDE;
- virtual unsigned height() const OVERRIDE;
- virtual unsigned planes() const OVERRIDE;
- virtual int stride(unsigned plane) const OVERRIDE;
- virtual const void* data(unsigned plane) const OVERRIDE;
+ virtual WebVideoFrame::Format format() const;
+ virtual unsigned width() const;
+ virtual unsigned height() const;
+ virtual unsigned planes() const;
+ virtual int stride(unsigned plane) const;
+ virtual const void* data(unsigned plane) const;
+ virtual unsigned textureId() const;
private:
scoped_refptr<media::VideoFrame> video_frame_;