Index: webkit/media/webvideoframe_impl.h |
diff --git a/webkit/media/webvideoframe_impl.h b/webkit/media/webvideoframe_impl.h |
index 2f0103742557a028ec9a03ca30fd0ab75df8278d..037dfd1d4b77842b02599936244a6dbd6f9f1250 100644 |
--- a/webkit/media/webvideoframe_impl.h |
+++ b/webkit/media/webvideoframe_impl.h |
@@ -20,13 +20,16 @@ class WebVideoFrameImpl : public WebKit::WebVideoFrame { |
WebVideoFrameImpl(scoped_refptr<media::VideoFrame> video_frame); |
virtual ~WebVideoFrameImpl(); |
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; |
virtual unsigned textureTarget() const; |
+ virtual unsigned visibleX() const; |
+ virtual unsigned visibleY() const; |
+ virtual unsigned visibleWidth() const; |
+ virtual unsigned visibleHeight() const; |
+ virtual unsigned textureWidth() const; |
+ virtual unsigned textureHeight() const; |
private: |
scoped_refptr<media::VideoFrame> video_frame_; |